diff options
author | Charles Kerr <charles.kerr@canonical.com> | 2014-10-06 14:54:15 -0500 |
---|---|---|
committer | Charles Kerr <charles.kerr@canonical.com> | 2014-10-06 14:54:15 -0500 |
commit | 5e05830765bdcae09db297918d3aa0620371ccf3 (patch) | |
tree | 59c7ec75a0f03cf091ad5c0dc20210ecd48ff0a4 /src | |
parent | 460f8cc1f9e58f81566f289e5e01e8e598f38228 (diff) | |
download | ayatana-indicator-display-5e05830765bdcae09db297918d3aa0620371ccf3.tar.gz ayatana-indicator-display-5e05830765bdcae09db297918d3aa0620371ccf3.tar.bz2 ayatana-indicator-display-5e05830765bdcae09db297918d3aa0620371ccf3.zip |
fix warnings reported by flint++ -- explicit ctors, classes with virtual methods but no virtual dtor, #ifdef include guards
Diffstat (limited to 'src')
-rw-r--r-- | src/exporter.h | 6 | ||||
-rw-r--r-- | src/indicator.h | 1 |
2 files changed, 6 insertions, 1 deletions
diff --git a/src/exporter.h b/src/exporter.h index 6367f3a..8867d32 100644 --- a/src/exporter.h +++ b/src/exporter.h @@ -17,6 +17,9 @@ * Charles Kerr <charles.kerr@canonical.com> */ +#ifndef INDICATOR_DISPLAY_EXPORTER_H +#define INDICATOR_DISPLAY_EXPORTER_H + #include <src/indicator.h> #include <core/signal.h> @@ -26,7 +29,7 @@ class Exporter { public: - Exporter(const std::shared_ptr<Indicator>& indicator); + explicit Exporter(const std::shared_ptr<Indicator>& indicator); ~Exporter(); core::Signal<std::string>& name_lost(); @@ -38,3 +41,4 @@ private: Exporter& operator=(const Exporter&) =delete; }; +#endif /* INDICATOR_DISPLAY_EXPORTER_H */ diff --git a/src/indicator.h b/src/indicator.h index dc4df09..d0834fd 100644 --- a/src/indicator.h +++ b/src/indicator.h @@ -52,6 +52,7 @@ public: virtual std::string name() const =0; virtual const core::Property<Header>& header() const =0; virtual std::shared_ptr<GMenuModel> menu_model() const =0; + virtual ~Profile() =default; protected: Profile() =default; |