No longer need the callback for refreshing the view
This commit is contained in:
parent
cb8f5ad7ae
commit
be1b603c01
4
po/de.po
4
po/de.po
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Browser 0.1.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-08-03 22:37+0200\n"
|
||||
"POT-Creation-Date: 2011-08-03 22:44+0200\n"
|
||||
"PO-Revision-Date: 2010-03-29 23:28+0200\n"
|
||||
"Last-Translator: Pierre Pronchery <khorben@defora.org>\n"
|
||||
"Language-Team: English\n"
|
||||
|
@ -768,7 +768,7 @@ msgstr ""
|
|||
msgid "Command exited with signal %d"
|
||||
msgstr ""
|
||||
|
||||
#: ../src/plugins/dirtree.c:62
|
||||
#: ../src/plugins/dirtree.c:61
|
||||
msgid "Directory tree"
|
||||
msgstr ""
|
||||
|
||||
|
|
4
po/es.po
4
po/es.po
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Browser 0.1.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-08-03 22:37+0200\n"
|
||||
"POT-Creation-Date: 2011-08-03 22:44+0200\n"
|
||||
"PO-Revision-Date: 2010-03-30 01:04+0200\n"
|
||||
"Last-Translator: Pierre Pronchery <khorben@defora.org>\n"
|
||||
"Language-Team: Spanish\n"
|
||||
|
@ -768,7 +768,7 @@ msgstr ""
|
|||
msgid "Command exited with signal %d"
|
||||
msgstr ""
|
||||
|
||||
#: ../src/plugins/dirtree.c:62
|
||||
#: ../src/plugins/dirtree.c:61
|
||||
msgid "Directory tree"
|
||||
msgstr ""
|
||||
|
||||
|
|
4
po/fr.po
4
po/fr.po
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Browser 0.1.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-08-03 22:37+0200\n"
|
||||
"POT-Creation-Date: 2011-08-03 22:44+0200\n"
|
||||
"PO-Revision-Date: 2010-03-29 23:28+0200\n"
|
||||
"Last-Translator: Pierre Pronchery <khorben@defora.org>\n"
|
||||
"Language-Team: French\n"
|
||||
|
@ -802,7 +802,7 @@ msgstr "La commande a terminé avec le code d'erreur %d"
|
|||
msgid "Command exited with signal %d"
|
||||
msgstr "La commande a été terminée par le signal %d"
|
||||
|
||||
#: ../src/plugins/dirtree.c:62
|
||||
#: ../src/plugins/dirtree.c:61
|
||||
msgid "Directory tree"
|
||||
msgstr "Arborescence"
|
||||
|
||||
|
|
4
po/it.po
4
po/it.po
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Browser 0.1.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-08-03 22:37+0200\n"
|
||||
"POT-Creation-Date: 2011-08-03 22:44+0200\n"
|
||||
"PO-Revision-Date: 2010-04-07 23:18+0200\n"
|
||||
"Last-Translator: Pierre Pronchery <khorben@defora.org>\n"
|
||||
"Language-Team: Italian\n"
|
||||
|
@ -768,7 +768,7 @@ msgstr ""
|
|||
msgid "Command exited with signal %d"
|
||||
msgstr ""
|
||||
|
||||
#: ../src/plugins/dirtree.c:62
|
||||
#: ../src/plugins/dirtree.c:61
|
||||
msgid "Directory tree"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -41,7 +41,6 @@ typedef struct _Dirtree
|
|||
/* prototypes */
|
||||
static GtkWidget * _dirtree_init(BrowserPlugin * plugin);
|
||||
static void _dirtree_destroy(BrowserPlugin * plugin);
|
||||
static void _dirtree_refresh(BrowserPlugin * plugin, char const * path);
|
||||
|
||||
static void _dirtree_refresh_folder(BrowserPlugin * plugin,
|
||||
GtkTreeIter * parent, char const * path, gboolean recurse);
|
||||
|
@ -63,7 +62,7 @@ BrowserPlugin plugin =
|
|||
"stock_folder",
|
||||
_dirtree_init,
|
||||
_dirtree_destroy,
|
||||
_dirtree_refresh,
|
||||
NULL,
|
||||
NULL
|
||||
};
|
||||
|
||||
|
@ -155,13 +154,6 @@ static void _dirtree_destroy(BrowserPlugin * plugin)
|
|||
}
|
||||
|
||||
|
||||
/* dirtree_refresh */
|
||||
static void _dirtree_refresh(BrowserPlugin * plugin, char const * path)
|
||||
{
|
||||
/* FIXME no longer force plug-ins to implement this callback */
|
||||
}
|
||||
|
||||
|
||||
/* dirtree_refresh_folder */
|
||||
static void _dirtree_refresh_folder(BrowserPlugin * plugin,
|
||||
GtkTreeIter * parent, char const * path, gboolean recurse)
|
||||
|
|
Loading…
Reference in New Issue
Block a user