diff options
author | Thorbjørn Lindeijer <bjorn@lindeijer.nl> | 2024-02-22 13:02:26 +0100 |
---|---|---|
committer | Thorbjørn Lindeijer <bjorn@lindeijer.nl> | 2024-02-22 14:32:45 +0100 |
commit | 81e4f170d8ba4ccbcfa1e6c07bd0522dfc3b6e08 (patch) | |
tree | e2619b16a5331e5760d94be389d0a3a01427293f /src/resources/theme.h | |
parent | d047db79f7034e0e75a85a656d18f40716d197b9 (diff) | |
download | mana-81e4f170d8ba4ccbcfa1e6c07bd0522dfc3b6e08.tar.gz mana-81e4f170d8ba4ccbcfa1e6c07bd0522dfc3b6e08.tar.bz2 mana-81e4f170d8ba4ccbcfa1e6c07bd0522dfc3b6e08.tar.xz mana-81e4f170d8ba4ccbcfa1e6c07bd0522dfc3b6e08.zip |
General code cleanups
* Use default member initializers
* Use range-based loops
* Don't use 'else' after 'return'
* Removed some unused includes
* Construct empty strings with std::string() instead of ""
* Clear strings with .clear() instead of assigning ""
* Check whether strings are empty with .empty() instead of comparing to ""
* Removed redundant initializations
Diffstat (limited to 'src/resources/theme.h')
-rw-r--r-- | src/resources/theme.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/resources/theme.h b/src/resources/theme.h index 9e7c4c3e..ae795ed4 100644 --- a/src/resources/theme.h +++ b/src/resources/theme.h @@ -42,7 +42,7 @@ class Skin public: Skin(ImageRect skin, Image *close, Image *stickyUp, Image *stickyDown, const std::string &filePath, - const std::string &name = ""); + const std::string &name = std::string()); ~Skin(); @@ -209,7 +209,7 @@ class Theme : public Palette, public EventListener /** * Get the minimum opacity allowed to skins. */ - float getMinimumOpacity() + float getMinimumOpacity() const { return mMinimumOpacity; } /** @@ -237,7 +237,7 @@ class Theme : public Palette, public EventListener static bool tryThemePath(std::string themePath); - void loadColors(std::string file = ""); + void loadColors(std::string file = std::string()); /** * Tells if the current skins opacity |