~cairo-dock-team/ubuntu/quantal/cairo-dock-plug-ins/3.0.2

« back to all changes in this revision

Viewing changes to Clipper/src/applet-config.c

Tags: upstream-2.2.0~0beta4
ImportĀ upstreamĀ versionĀ 2.2.0~0beta4

Show diffs side-by-side

added added

removed removed

Lines of Context:
70
70
        
71
71
        gsize length = 0;
72
72
        myConfig.pPersistentItems = CD_CONFIG_GET_STRING_LIST("Configuration", "persistent", &length);
 
73
        
 
74
        myConfig.bRememberItems = CD_CONFIG_GET_BOOLEAN_WITH_DEFAULT ("Configuration", "remember", FALSE);
 
75
        myConfig.cRememberedItems = CD_CONFIG_GET_STRING ("Configuration", "last items");  // on les recupere meme si on ne veut psa s'en souvenir, pour pouvoir effacer le contenu de la cle si on desactive l'option.
73
76
CD_APPLET_GET_CONFIG_END
74
77
 
75
78
 
81
84
                g_free (myConfig.cShortCut);
82
85
        }
83
86
        g_strfreev (myConfig.pPersistentItems);
 
87
        g_free (myConfig.cRememberedItems);
84
88
CD_APPLET_RESET_CONFIG_END
85
89
 
86
90