efl/ecore_imf/scim: remove unused code
authorJihoon Kim <imfine98@gmail.com>
Sat, 12 Jan 2013 15:51:57 +0000 (15:51 +0000)
committerJihoon Kim <imfine98@gmail.com>
Sat, 12 Jan 2013 15:51:57 +0000 (15:51 +0000)
SVN revision: 82705

src/modules/ecore_imf/scim/scim_imcontext.cpp

index ca4777e..88066b9 100644 (file)
@@ -211,8 +211,6 @@ static Ecore_X_Window                                  _client_window
 static bool                                             _on_the_spot                = true;
 static bool                                             _shared_input_method        = false;
 
-static Eina_Bool                                        autocap_allow = EINA_FALSE;
-
 static Display *__current_display      = 0;
 static int      __current_alt_mask     = Mod1Mask;
 static int      __current_meta_mask    = 0;
@@ -414,7 +412,6 @@ EAPI EcoreIMFContextISF *
 isf_imf_context_new(void)
 {
    SCIM_DEBUG_FRONTEND(1) << __FUNCTION__ << "...\n";
-   char *env;
 
    EcoreIMFContextISF *context_scim = new EcoreIMFContextISF;
    if (context_scim == NULL)
@@ -431,10 +428,6 @@ isf_imf_context_new(void)
         _scim_initialized = true;
      }
 
-   env = getenv("ECORE_IMF_AUTOCAPITAL_ALLOW");
-   if (env)
-     autocap_allow = !!atoi(env);
-
    return context_scim;
 }