summaryrefslogtreecommitdiff
path: root/gio/gdesktopappinfo.h
diff options
context:
space:
mode:
authorAlexander Larsson <alexl@redhat.com>2007-11-28 16:01:59 +0000
committerAlexander Larsson <alexl@src.gnome.org>2007-11-28 16:01:59 +0000
commitd9594f5709313d6e7a8a4f3e5f3b23fc72017417 (patch)
treebf1af5af65c096b5f44cb6f6da90d49f92e76c38 /gio/gdesktopappinfo.h
parent3deb5aceda146d720fef381c4adb2e39587eb41c (diff)
downloadglib-d9594f5709313d6e7a8a4f3e5f3b23fc72017417.tar.gz
Removed unnecessary file
2007-11-28 Alexander Larsson <alexl@redhat.com> * Makefile.am: * gdriveprivate.h: Removed unnecessary file * gdesktopappinfo.[ch]: * gdummyfile.[ch]: * gfile.c: * glocaldirectorymonitor.[ch]: * glocalfile.[ch]: * glocalfileenumerator.[ch]: * glocalfileinputstream.[ch]: * glocalfilemonitor.[ch]: * glocalfileoutputstream.[ch]: * glocalvfs.[ch]: * gnativevolumemonitor.c: * gpollfilemonitor.[ch]: * gunionvolumemonitor.[ch]: * gunixdrive.[ch]: * gunixvolume.[ch]: * gunixvolumemonitor.[ch]: * gvfs.c: * gvolumeprivate.h: * inotify/ginotifydirectorymonitor.[ch]: * inotify/ginotifyfilemonitor.[ch]: * inotify/inotify-helper.c: Append _ to all internal functions * gio.symbols: Add missing symbols Export symbols needed for modules svn path=/trunk/; revision=5977
Diffstat (limited to 'gio/gdesktopappinfo.h')
-rw-r--r--gio/gdesktopappinfo.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/gio/gdesktopappinfo.h b/gio/gdesktopappinfo.h
index 0f667dca3..8c8753697 100644
--- a/gio/gdesktopappinfo.h
+++ b/gio/gdesktopappinfo.h
@@ -27,7 +27,7 @@
G_BEGIN_DECLS
-#define G_TYPE_DESKTOP_APP_INFO (g_desktop_app_info_get_type ())
+#define G_TYPE_DESKTOP_APP_INFO (_g_desktop_app_info_get_type ())
#define G_DESKTOP_APP_INFO(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_DESKTOP_APP_INFO, GDesktopAppInfo))
#define G_DESKTOP_APP_INFO_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_DESKTOP_APP_INFO, GDesktopAppInfoClass))
#define G_IS_DESKTOP_APP_INFO(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_DESKTOP_APP_INFO))
@@ -42,11 +42,11 @@ struct _GDesktopAppInfoClass
GObjectClass parent_class;
};
-GType g_desktop_app_info_get_type (void) G_GNUC_CONST;
+GType _g_desktop_app_info_get_type (void) G_GNUC_CONST;
-GDesktopAppInfo *g_desktop_app_info_new_from_filename (const char *filename);
-GDesktopAppInfo *g_desktop_app_info_new (const char *desktop_id);
-gboolean g_desktop_app_info_get_is_hidden (GDesktopAppInfo *info);
+GDesktopAppInfo *_g_desktop_app_info_new_from_filename (const char *filename);
+GDesktopAppInfo *_g_desktop_app_info_new (const char *desktop_id);
+gboolean _g_desktop_app_info_get_is_hidden (GDesktopAppInfo *info);
G_END_DECLS