SF.net SVN: geany-plugins:[816] trunk/geanylatex
frlan at users.sourceforge.net
frlan at xxxxx
Mon Jul 13 17:47:09 UTC 2009
Revision: 816
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=816&view=rev
Author: frlan
Date: 2009-07-13 17:47:09 +0000 (Mon, 13 Jul 2009)
Log Message:
-----------
GeanyLaTeX: Correct a tooltip by removing unneeded \t from it.
Modified Paths:
--------------
trunk/geanylatex/ChangeLog
trunk/geanylatex/src/geanylatex.c
Modified: trunk/geanylatex/ChangeLog
===================================================================
--- trunk/geanylatex/ChangeLog 2009-07-13 17:46:41 UTC (rev 815)
+++ trunk/geanylatex/ChangeLog 2009-07-13 17:47:09 UTC (rev 816)
@@ -1,3 +1,8 @@
+2009-07-13 Frank Lanitz <frank(at)frank(dot)uvena(dot)de>
+
+ * Correct a tooltip by removing unneeded \t from it.
+
+
2009-07-09 Frank Lanitz <frank(at)frank(dot)uvena(dot)de>
* Added a function to level up and level down structure element.
Modified: trunk/geanylatex/src/geanylatex.c
===================================================================
--- trunk/geanylatex/src/geanylatex.c 2009-07-13 17:46:41 UTC (rev 815)
+++ trunk/geanylatex/src/geanylatex.c 2009-07-13 17:47:09 UTC (rev 816)
@@ -824,9 +824,9 @@
label_date = gtk_label_new(_("Date:"));
date_textbox = gtk_entry_new();
ui_widget_set_tooltip_text(date_textbox,
- _("Sets the value of the \\date command inside header of your\
- newly created LaTeX-document. Keeping it at \\today is a good \
- decision if you don't need any fixed date."));
+ _("Sets the value of the \\date command inside header of your "
+ "new created LaTeX-document. Keeping it at \\today is a good "
+ "decision if you don't need any fixed date."));
gtk_entry_set_text(GTK_ENTRY(date_textbox), "\\today");
gtk_misc_set_alignment(GTK_MISC(label_date), 0, 0.5);
gtk_table_attach_defaults(GTK_TABLE(table), label_date, 0, 1, 4, 5);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the Plugins-Commits
mailing list