X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=src%2Ftint2conf%2Fmain.c;h=c22862d1468b510188505de55312e527de689bd4;hb=87acd48b92031b378887ea8b7ea9fa54aea8fa25;hp=66ac917f37bd88bf26d0199f775ebe1d5d126149;hpb=1c1cfea95e549170ede1eaf05240b935aa2186a9;p=chaz%2Ftint2 diff --git a/src/tint2conf/main.c b/src/tint2conf/main.c index 66ac917..c22862d 100644 --- a/src/tint2conf/main.c +++ b/src/tint2conf/main.c @@ -76,9 +76,9 @@ static const char *global_ui = " " " " " " - " " -// " " // " " +// " " + " " " " " " " " @@ -92,11 +92,11 @@ static const char *global_ui = " " " " " " - " " +// " " " " " " " " - " " +// " " " " " " " " @@ -132,6 +132,8 @@ int main (int argc, char ** argv) g_thread_init( NULL ); read_config(); initTheme(); + g_set_application_name (_("tint2conf")); + gtk_window_set_default_icon_name("taskbar"); // define main layout : container, menubar, toolbar g_window = gtk_window_new (GTK_WINDOW_TOPLEVEL); @@ -185,7 +187,7 @@ static void menuAbout() "comments", _("Theming tool for tint2 panel"), "version", VERSION_STRING, "copyright", _("Copyright 2009 tint2 team\nTint2 License GNU GPL version 2\nTintwizard License GNU GPL version 3"), - "logo-icon-name", NULL, "authors", authors, + "logo-icon-name", "taskbar", "authors", authors, /* Translators: translate "translator-credits" as your name to have it appear in the credits in the "About" dialog */ @@ -325,19 +327,19 @@ static void menuProperties() GtkTreeSelection *sel; GtkTreeIter iter; GtkTreeModel *model; - char *file, *cmd; + char *file; sel = gtk_tree_view_get_selection(GTK_TREE_VIEW(g_theme_view)); if (gtk_tree_selection_get_selected(GTK_TREE_SELECTION(sel), &model, &iter)) { gtk_tree_model_get(model, &iter, COL_THEME_FILE, &file, -1); -/* +//* GtkWidget *prop; prop = create_properties(); gtk_window_present(GTK_WINDOW(prop)); //printf("menuProperties : fin\n"); //*/ -//* - cmd = g_strdup_printf("%s \'%s\' &", g_cmd_property, file); +/* + char *cmd = g_strdup_printf("%s \'%s\' &", g_cmd_property, file); printf("cmd %s\n", cmd); system(cmd); g_free(cmd);