summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAki <please@ignore.pl>2022-02-28 22:11:24 +0100
committerAki <please@ignore.pl>2022-02-28 22:11:24 +0100
commit01a18876c3caf72e401c0f5ff34a54f0e620e5dd (patch)
treef6b2898b2902566076551b384229303c05e43541
parent4be19cc8bfa9ea63c3d90aa0900f28ca9c373b90 (diff)
downloadstarshatter-01a18876c3caf72e401c0f5ff34a54f0e620e5dd.zip
starshatter-01a18876c3caf72e401c0f5ff34a54f0e620e5dd.tar.gz
starshatter-01a18876c3caf72e401c0f5ff34a54f0e620e5dd.tar.bz2
Fixed deleted copy and moves for bundle
-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;