From: Jihoon Kim Date: Sat, 17 Jan 2015 03:00:46 +0000 (+0900) Subject: Remove unused log turn on feature X-Git-Tag: submit/tizen/20150611.051311~25 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7d0915690a495109ccce0e8f89e5246316a6dfe2;p=platform%2Fcore%2Fuifw%2Flibscl-core.git Remove unused log turn on feature Change-Id: I2c63028f5ed2f8b96bbb6faa9a30ac3f4b4d2e2d --- diff --git a/src/sclconnection-isf.cpp b/src/sclconnection-isf.cpp index 787ca12..97c5ab3 100644 --- a/src/sclconnection-isf.cpp +++ b/src/sclconnection-isf.cpp @@ -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; diff --git a/src/sclcorecallback.h b/src/sclcorecallback.h index 16a76d4..7013228 100644 --- a/src/sclcorecallback.h +++ b/src/sclcorecallback.h @@ -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) {}