Revision: 1111 http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=1111&view=re... Author: frlan Date: 2010-01-04 14:39:34 +0000 (Mon, 04 Jan 2010)
Log Message: ----------- GeanyLaTeX: Don't set toolbar icons sensitivity on opening of documents as already another signal will be handled here
Modified Paths: -------------- trunk/geanylatex/src/geanylatex.c
Modified: trunk/geanylatex/src/geanylatex.c =================================================================== --- trunk/geanylatex/src/geanylatex.c 2010-01-04 14:32:59 UTC (rev 1110) +++ trunk/geanylatex/src/geanylatex.c 2010-01-04 14:39:34 UTC (rev 1111) @@ -267,12 +267,7 @@ return FALSE; }
-static on_document_open(GObject *object, GeanyDocument *doc, gpointer data) -{ - return on_document_activate(object, doc, data); -}
- static on_document_new(GObject *object, GeanyDocument *doc, gpointer data) { return on_document_activate(object, doc, data); @@ -391,7 +386,6 @@ { "editor-notify", (GCallback) &on_editor_notify, FALSE, NULL }, { "document-activate", (GCallback) &on_document_activate, FALSE, NULL }, { "document-filetype-set", (GCallback) &on_document_filetype_set, FALSE, NULL }, - { "document-open", (GCallback) &on_document_open, FALSE, NULL }, { "document-new", (GCallback) &on_document_new, FALSE, NULL}, { NULL, NULL, FALSE, NULL } };
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.