aboutsummaryrefslogtreecommitdiffstats
path: root/src/wm_layer_control.hpp
diff options
context:
space:
mode:
authorKazumasa Mitsunari <knimitz@witz-inc.co.jp>2018-08-31 18:35:31 +0900
committerKazumasa Mitsunari <knimitz@witz-inc.co.jp>2018-08-31 18:35:44 +0900
commit915faae5e2901f2112a680586582a282c44dc401 (patch)
tree075fe49f72bfff3b9386765b0270882004e15101 /src/wm_layer_control.hpp
parenta3ed61b74c04da98756af1f583e72b53891adc58 (diff)
Bug Fix : wm_layer
Change-Id: I6048e6e5b98fcea167e5a0bc03e7f0e9761ff8af Signed-off-by: Kazumasa Mitsunari <knimitz@witz-inc.co.jp>
Diffstat (limited to 'src/wm_layer_control.hpp')
-rw-r--r--src/wm_layer_control.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wm_layer_control.hpp b/src/wm_layer_control.hpp
index 7752fc4..f0bc175 100644
--- a/src/wm_layer_control.hpp
+++ b/src/wm_layer_control.hpp
@@ -40,11 +40,11 @@ class Screen {
class LayerControlCallbacks {
public:
LayerControlCallbacks() {};
- virtual ~LayerControlCallbacks() = default;
+ ~LayerControlCallbacks() = default;
LayerControlCallbacks(const LayerControlCallbacks &obj) = default;
// callback functions
- virtual void test(unsigned i) { HMI_DEBUG("test %d", i); }
+ void test(unsigned i) { HMI_DEBUG("test %d", i); }
std::function<void(unsigned)> surfaceCreated;
/* std::function<void(unsigned)> surfaceDestroyed;
std::function<void(unsigned)> layerCreated;