diff options
author | David Robillard <d@drobilla.net> | 2017-12-25 12:34:07 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2017-12-25 12:49:55 -0500 |
commit | e2d1344c7c4960da1f57e656c87c4599d81988aa (patch) | |
tree | 16f8d4fcadc5a9daad6e6cfbaaa4ad794da8e623 /src/gui | |
parent | 9aaa4892720de74e165049e2be941629038a6951 (diff) | |
download | ingen-e2d1344c7c4960da1f57e656c87c4599d81988aa.tar.gz ingen-e2d1344c7c4960da1f57e656c87c4599d81988aa.tar.bz2 ingen-e2d1344c7c4960da1f57e656c87c4599d81988aa.zip |
Remove trivial destructors and use default where possible
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/Style.cpp | 4 | ||||
-rw-r--r-- | src/gui/Style.hpp | 1 |
2 files changed, 0 insertions, 5 deletions
diff --git a/src/gui/Style.cpp b/src/gui/Style.cpp index 86f1ae1e..52afd404 100644 --- a/src/gui/Style.cpp +++ b/src/gui/Style.cpp @@ -56,10 +56,6 @@ Style::Style(App& app) { } -Style::~Style() -{ -} - /** Loads settings from the rc file. Passing no parameter will load from * the default location. */ diff --git a/src/gui/Style.hpp b/src/gui/Style.hpp index d2d4cbd5..f92d884e 100644 --- a/src/gui/Style.hpp +++ b/src/gui/Style.hpp @@ -33,7 +33,6 @@ class Style { public: explicit Style(App& app); - ~Style(); void load_settings(std::string filename = ""); void save_settings(std::string filename = ""); |