Revision: 679
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=679&view=rev
Author: frlan
Date: 2009-05-29 20:09:15 +0000 (Fri, 29 May 2009)
Log Message:
-----------
GeanyLaTeX: Added some more files with possible translatable strings to list of pot pot files
Modified Paths:
--------------
trunk/geanylatex/po/POTFILES.in
Modified: trunk/geanylatex/po/POTFILES.in
===================================================================
--- trunk/geanylatex/po/POTFILES.in 2009-05-28 15:53:25 UTC (rev 678)
+++ trunk/geanylatex/po/POTFILES.in 2009-05-29 20:09:15 UTC (rev 679)
@@ -6,3 +6,6 @@
src/formatutils.c
src/formatpatterns.c
src/latexenvironments.c
+src/latexkeybindings.c
+src/latexutils.c
+src/reftex.c
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 678
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=678&view=rev
Author: frlan
Date: 2009-05-28 15:53:25 +0000 (Thu, 28 May 2009)
Log Message:
-----------
GeanySendMail: Removed not used anymore variable
Modified Paths:
--------------
trunk/geanysendmail/src/geanysendmail.c
Modified: trunk/geanysendmail/src/geanysendmail.c
===================================================================
--- trunk/geanysendmail/src/geanysendmail.c 2009-05-28 15:51:17 UTC (rev 677)
+++ trunk/geanysendmail/src/geanysendmail.c 2009-05-28 15:53:25 UTC (rev 678)
@@ -326,10 +326,7 @@
GtkWidget *plugin_configure(GtkDialog *dialog)
{
GtkWidget *label1, *label2, *vbox;
- GtkTooltips *tooltip = NULL;
- tooltip = gtk_tooltips_new();
-
vbox = gtk_vbox_new(FALSE, 6);
/* add a label and a text entry to the dialog */
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 676
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=676&view=rev
Author: frlan
Date: 2009-05-27 22:12:01 +0000 (Wed, 27 May 2009)
Log Message:
-----------
GeanySendMail: Make usage of Geany's ui_widget_set_tooltip_text() function
Modified Paths:
--------------
trunk/geanysendmail/ChangeLog
trunk/geanysendmail/src/geanysendmail.c
Modified: trunk/geanysendmail/ChangeLog
===================================================================
--- trunk/geanysendmail/ChangeLog 2009-05-27 21:51:23 UTC (rev 675)
+++ trunk/geanysendmail/ChangeLog 2009-05-27 22:12:01 UTC (rev 676)
@@ -1,3 +1,8 @@
+2009-05-28 Frank Lanitz <frank(at)frank(dot)uvena(dot)de>
+
+ * Make usage of Geany's ui_widget_set_tooltip_text() function.
+
+
2009-04-24 Frank Lanitz <frank(at)frank(dot)uvena(dot)de>
* Applied a patch by Timothy Boronczyk which allows aborting when inserting
Modified: trunk/geanysendmail/src/geanysendmail.c
===================================================================
--- trunk/geanysendmail/src/geanysendmail.c 2009-05-27 21:51:23 UTC (rev 675)
+++ trunk/geanysendmail/src/geanysendmail.c 2009-05-27 22:12:01 UTC (rev 676)
@@ -352,10 +352,8 @@
gtk_misc_set_alignment(GTK_MISC(label2), 0, 0.5);
pref_widgets.checkbox_icon_to_toolbar = gtk_check_button_new_with_label(_("Showing icon in toolbar"));
- gtk_tooltips_set_tip(tooltip, pref_widgets.checkbox_icon_to_toolbar,
- _
- ("Shows a icon in the toolbar to send file more easy."),
- NULL);
+ ui_widget_set_tooltip_text(pref_widgets.checkbox_icon_to_toolbar,
+ _("Shows a icon in the toolbar to send file more easy."));
gtk_button_set_focus_on_click(GTK_BUTTON(pref_widgets.checkbox_icon_to_toolbar), FALSE);
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(pref_widgets.checkbox_icon_to_toolbar), icon_in_toolbar);
gtk_widget_show(pref_widgets.checkbox_icon_to_toolbar);
@@ -415,8 +413,8 @@
/* Build up menu entry */
menu_mail = gtk_menu_item_new_with_mnemonic(_("_Mail document"));
gtk_container_add(GTK_CONTAINER(geany->main_widgets->tools_menu), menu_mail);
- gtk_tooltips_set_tip(tooltips, menu_mail,
- _("Sends the opened file as unzipped attachment by any mailer from your $PATH"), NULL);
+ ui_widget_set_tooltip_text(menu_mail,
+ _("Sends the opened file as unzipped attachment by any mailer from your $PATH"));
g_signal_connect(G_OBJECT(menu_mail), "activate", G_CALLBACK(send_as_attachment), NULL);
/* setup keybindings */
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 674
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=674&view=rev
Author: frlan
Date: 2009-05-26 20:55:52 +0000 (Tue, 26 May 2009)
Log Message:
-----------
GeanySendMail: Tagging of 0.4.2 maintenance release
Added Paths:
-----------
tags/geanysendmail/geanysendmail-0.4.2/
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.