kill warning if we can't open the path.

2004-12-08  Not Zed  <NotZed@Ximian.com>

        * e-plugin.c (e_plugin_load_plugins): kill warning if we can't
        open the path.

svn path=/trunk/; revision=28084
This commit is contained in:
Not Zed
2004-12-08 01:59:03 +00:00
committed by Michael Zucci
parent f055315218
commit 9e72aaecbb
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2004-12-08 Not Zed <NotZed@Ximian.com>
* e-plugin.c (e_plugin_load_plugins): kill warning if we can't
open the path.
2004-12-06 Not Zed <NotZed@Ximian.com>
* e-config.c (ec_rebuild): set the table spacings to 6 for

View File

@ -452,7 +452,7 @@ e_plugin_load_plugins(void)
dir = opendir(path);
if (dir == NULL) {
g_warning("Could not find plugin path: %s", path);
/*g_warning("Could not find plugin path: %s", path);*/
continue;
}