Export moo_open_file()

master
Yevgen Muntyan 2007-05-08 21:47:03 -05:00
parent 4d285b2c58
commit d1351db01e
3 changed files with 3 additions and 3 deletions

View File

@ -329,7 +329,7 @@ moo_file_selector_activate (MooFileView *fileview,
moo_editor_open_file (moo_edit_window_get_editor (filesel->window),
filesel->window, GTK_WIDGET (filesel), path, NULL);
else if (!is_exe)
_moo_open_file (path);
moo_open_file (path);
}

View File

@ -214,7 +214,7 @@ moo_open_url (const char *url)
gboolean
_moo_open_file (const char *path)
moo_open_file (const char *path)
{
char *uri;
gboolean ret;

View File

@ -24,7 +24,7 @@ gboolean moo_open_url (const char *url);
gboolean moo_open_email (const char *address,
const char *subject,
const char *body);
gboolean _moo_open_file (const char *path);
gboolean moo_open_file (const char *path);
void moo_window_present (GtkWindow *window,
guint32 stamp);