Remove unused log turn on feature 87/40887/1
authorJihoon Kim <jihoon48.kim@samsung.com>
Sat, 17 Jan 2015 03:00:46 +0000 (12:00 +0900)
committerJihoon Kim <jihoon48.kim@samsung.com>
Wed, 10 Jun 2015 07:24:10 +0000 (16:24 +0900)
Change-Id: I2c63028f5ed2f8b96bbb6faa9a30ac3f4b4d2e2d

src/sclconnection-isf.cpp
src/sclcorecallback.h

index 787ca12..97c5ab3 100644 (file)
@@ -475,16 +475,6 @@ static void slot_update_associate_table_page_size (const scim::HelperAgent *, in
     }
 }
 
-static void slot_turn_on_log (const scim::HelperAgent *agent, scim::uint32 &on) {
-    CSCLCoreImpl *impl = CSCLCoreImpl::get_instance();
-    if (impl) {
-        ISCLCoreEventCallback *callback = impl->get_core_event_callback();
-        if (callback) {
-            callback->on_turn_on_log(on);
-        }
-    }
-}
-
 static void slot_show_ise_option_window (const scim::HelperAgent *agent, int ic, const scim::String &uuid) {
     CSCLCoreImpl *impl = CSCLCoreImpl::get_instance();
     if (impl) {
@@ -594,7 +584,6 @@ sclboolean CSCLConnectionISF::init()
     m_helper_agent.signal_connect_associate_table_page_up (scim::slot (slot_associate_table_page_up));
     m_helper_agent.signal_connect_associate_table_page_down (scim::slot (slot_associate_table_page_down));
     m_helper_agent.signal_connect_update_associate_table_page_size (scim::slot (slot_update_associate_table_page_size));
-    m_helper_agent.signal_connect_turn_on_log (scim::slot (slot_turn_on_log));
     m_helper_agent.signal_connect_show_option_window (scim::slot (slot_show_ise_option_window));
 
     return ret;
index 16a76d4..7013228 100644 (file)
@@ -83,7 +83,6 @@ struct ISCLCoreEventCallback {
     virtual void on_associate_table_page_up(sclint ic, const sclchar *uuid) {}
     virtual void on_associate_table_page_down(sclint ic, const sclchar *uuid) {}
     virtual void on_update_associate_table_page_size(sclint ic, const sclchar *uuid, sclint page_size) {}
-    virtual void on_turn_on_log(sclu32 on) {}
 
     virtual void on_set_display_language(const sclchar *language) {}
     virtual void on_set_rotation_degree(sclint degree) {}