Revert "Change EventBase::SetVal to virtual" 39/281939/1
authorChanggyu Choi <changyu.choi@samsung.com>
Fri, 23 Sep 2022 09:22:35 +0000 (09:22 +0000)
committerChanggyu Choi <changyu.choi@samsung.com>
Fri, 23 Sep 2022 09:22:35 +0000 (09:22 +0000)
This reverts commit 8b8274f009fd6e4f572a95cd5bf18e3359a86518.

Reason for revert: <INSERT REASONING HERE>

Change-Id: I6ea72a87f29dcf11bed328b560e02e571c421eba

tizen-cpp/app-core-cpp/app_core_base.hh

index 2107311..815c6ff 100644 (file)
@@ -61,8 +61,8 @@ class EXPORT_API AppCoreBase : public IAppCore, public IMainLoop {
     Type GetType() const override;
     std::string GetVal(std::string cur) const;
     int GetVal(int cur) const;
-    virtual void SetVal(std::string val);
-    virtual void SetVal(int val);
+    void SetVal(std::string val);
+    void SetVal(int val);
 
    private:
     class Impl;