diff options
author | rbuj <[email protected]> | 2020-08-04 10:39:44 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2020-08-04 16:39:25 +0200 |
commit | 85a22e754cd1f43e178e4a81c182643d4319bc5b (patch) | |
tree | ec52f20880ba991d7abcc863de2a9c302ddf2d41 /src/core/prefs.c | |
parent | 29f0d1d7ddd859433bf953fba3861a4746b3f09a (diff) | |
download | marco-85a22e754cd1f43e178e4a81c182643d4319bc5b.tar.bz2 marco-85a22e754cd1f43e178e4a81c182643d4319bc5b.tar.xz |
Remove trailing spaces/tabs
find . \( -name '*.h' -o -name '*.c' \) -exec sed -i 's/[[:space:]]*$//' {} \;
find . \( -name '*.h' -o -name '*.c' \) -exec sed -i 's/\t*$//' {} \;
Diffstat (limited to 'src/core/prefs.c')
-rw-r--r-- | src/core/prefs.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/prefs.c b/src/core/prefs.c index f7df9f39..691516a5 100644 --- a/src/core/prefs.c +++ b/src/core/prefs.c @@ -541,8 +541,8 @@ static MetaIntPreference preferences_int[] = KEY_GENERAL_SCHEMA, META_PREF_ALT_TAB_MAX_COLUMNS, &alt_tab_max_columns, - META_MIN_ALT_TAB_MAX_COLUMNS, - META_MAX_ALT_TAB_MAX_COLUMNS, + META_MIN_ALT_TAB_MAX_COLUMNS, + META_MAX_ALT_TAB_MAX_COLUMNS, META_DEFAULT_ALT_TAB_MAX_COLUMNS, }, { NULL, NULL, 0, NULL, 0, 0, 0, }, @@ -1166,7 +1166,7 @@ gboolean meta_prefs_is_in_skip_list (char *class) { GList *item; - + for (item = show_desktop_skip_list; item; item = item->next) { if (!g_ascii_strcasecmp (class, item->data)) |