diff options
author | monsta <[email protected]> | 2015-11-11 11:54:15 +0300 |
---|---|---|
committer | monsta <[email protected]> | 2015-11-11 11:54:15 +0300 |
commit | 1e4d522036ca7ed7d7a31fcb9f39d585cd1c0d54 (patch) | |
tree | 402884f4a83f8ba5c138b2b825f7308e491f435c /applets/wncklet | |
parent | 744b57ba60660031e1d605b9e8e3c11669960efe (diff) | |
download | mate-panel-1e4d522036ca7ed7d7a31fcb9f39d585cd1c0d54.tar.bz2 mate-panel-1e4d522036ca7ed7d7a31fcb9f39d585cd1c0d54.tar.xz |
fix typo in #define
Diffstat (limited to 'applets/wncklet')
-rw-r--r-- | applets/wncklet/workspace-switcher.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/applets/wncklet/workspace-switcher.c b/applets/wncklet/workspace-switcher.c index 97fc97da..945a87c5 100644 --- a/applets/wncklet/workspace-switcher.c +++ b/applets/wncklet/workspace-switcher.c @@ -41,7 +41,7 @@ #define NEVER_SENSITIVE "never_sensitive" #define MARCO_GENERAL_SCHEMA "org.mate.Marco.general" #define NUM_WORKSPACES "num-workspaces" -#define MARCO_WORSKACES_SCHEMA "org.mate.Marco.workspace-names" +#define MARCO_WORKSPACES_SCHEMA "org.mate.Marco.workspace-names" #define WORKSPACE_NAME "name-1" #define WORKSPACE_SWITCHER_ICON "mate-panel-workspace-switcher" @@ -842,8 +842,8 @@ static void setup_dialog(GtkBuilder* builder, PagerData* pager) if (mate_gsettings_schema_exists(MARCO_GENERAL_SCHEMA)) marco_general_settings = g_settings_new (MARCO_GENERAL_SCHEMA); - if (mate_gsettings_schema_exists(MARCO_WORSKACES_SCHEMA)) - marco_workspaces_settings = g_settings_new (MARCO_WORSKACES_SCHEMA); + if (mate_gsettings_schema_exists(MARCO_WORKSPACES_SCHEMA)) + marco_workspaces_settings = g_settings_new (MARCO_WORKSPACES_SCHEMA); pager->workspaces_frame = WID("workspaces_frame"); pager->workspace_names_label = WID("workspace_names_label"); |