[genius] Wed Jul 29 15:11:16 2009 Jiri (George) Lebl <jirka 5z com>
- From: George Lebl <jirka src gnome org>
- To: svn-commits-list gnome org
- Cc:
- Subject: [genius] Wed Jul 29 15:11:16 2009 Jiri (George) Lebl <jirka 5z com>
- Date: Wed, 29 Jul 2009 20:51:19 +0000 (UTC)
commit a32d45abd42adc398b87345fe332b19ab50871ec
Author: Jiri (George) Lebl <jirka 5z com>
Date: Wed Jul 29 15:51:09 2009 -0500
Wed Jul 29 15:11:16 2009 Jiri (George) Lebl <jirka 5z com>
* Release 1.0.7
* src/gnome-genius.c: set all toolbar items to important so
that text always shows.
ChangeLog | 7 +++++++
po/POTFILES.in | 1 +
po/cs.po | 6 +++++-
src/gnome-genius.c | 16 ++++++++++++++++
4 files changed, 29 insertions(+), 1 deletions(-)
---
diff --git a/ChangeLog b/ChangeLog
index 046c030..d505499 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+Wed Jul 29 15:11:16 2009 Jiri (George) Lebl <jirka 5z com>
+
+ * Release 1.0.7
+
+ * src/gnome-genius.c: set all toolbar items to important so
+ that text always shows.
+
Tue Jul 28 14:04:33 2009 Jiri (George) Lebl <jirka 5z com>
* NEWS: update,
diff --git a/po/POTFILES.in b/po/POTFILES.in
index 6e6dbc0..07e4b04 100644
--- a/po/POTFILES.in
+++ b/po/POTFILES.in
@@ -17,6 +17,7 @@ src/symbolic.c
src/testplugin.c
src/util.c
src/funclibhelper.cP
+src/parseutil.c
#ve/glade-helper.c
ve/ve-nongnome.c
gtkextra/gtkplot.c
diff --git a/po/cs.po b/po/cs.po
index 8253d58..23a3326 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: genius VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-07-29 10:26-0500\n"
+"POT-Creation-Date: 2009-07-29 15:18-0500\n"
"PO-Revision-Date: 2005-08-05 12:14+0200\n"
"Last-Translator: Miloslav Trmac <mitr volny cz>\n"
"Language-Team: Czech <cs li org>\n"
@@ -4948,6 +4948,10 @@ msgstr "%s: parametr Ä?Ãslo %d nenà Å?etÄ?zec"
msgid "%s: argument number %d not a function or identifier"
msgstr "%s: parametr Ä?Ãslo %d nenà funkce ani identifikátor"
+#: ../src/parseutil.c:57
+msgid "ERROR: local statement not the first statement in function definition"
+msgstr "ERROR: výraz local může být jen prvnà výraz v definici funkce"
+
#~ msgid "%s: argument 2 must be less than or equal to argument 3"
#~ msgstr "%s: parametr 2 musà být menšà nebo roven parametru 3"
diff --git a/src/gnome-genius.c b/src/gnome-genius.c
index 6f5b9ff..f551199 100644
--- a/src/gnome-genius.c
+++ b/src/gnome-genius.c
@@ -608,12 +608,28 @@ add_main_window_contents (GtkWidget *window, GtkWidget *notebook)
GtkWidget *box1;
GtkActionGroup *actions;
GError *error = NULL;
+ GtkAction *act;
stock_init ();
actions = gtk_action_group_new ("Actions");
gtk_action_group_add_actions (actions, entries, n_entries, NULL);
+ /* FIXME: I have no clue if this is correct, but I can't find any docs
+ * on this */
+ act = gtk_action_group_get_action (actions, "Interrupt");
+ gtk_action_set_is_important (act, TRUE);
+ act = gtk_action_group_get_action (actions, "Run");
+ gtk_action_set_is_important (act, TRUE);
+ act = gtk_action_group_get_action (actions, "ToolbarNew");
+ gtk_action_set_is_important (act, TRUE);
+ act = gtk_action_group_get_action (actions, "ToolbarOpen");
+ gtk_action_set_is_important (act, TRUE);
+ act = gtk_action_group_get_action (actions, "ToolbarPlot");
+ gtk_action_set_is_important (act, TRUE);
+ act = gtk_action_group_get_action (actions, "Quit");
+ gtk_action_set_is_important (act, TRUE);
+
genius_ui = gtk_ui_manager_new ();
genius_window_statusbar = gtk_statusbar_new ();
g_signal_connect (genius_ui, "connect_proxy",
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]