summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--Stars45/ContentBundle.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/Stars45/ContentBundle.h b/Stars45/ContentBundle.h
index 7c23c66..f94e0d9 100644
--- a/Stars45/ContentBundle.h
+++ b/Stars45/ContentBundle.h
@@ -36,8 +36,9 @@ public:
void UseLocale(Locale* locale);
void Load(const char* bundle, Locale* locale);
- int operator == (const ContentBundle& that) = delete;
+ ContentBundle(ContentBundle&& that) = delete;
ContentBundle(const ContentBundle& that) = delete;
+ operator = (const ContentBundle& that) = delete;
const Text& GetName() const { return name; }
Text GetText(const char* key) const;