|
From: <br...@us...> - 2009-07-13 08:40:35
|
Revision: 3971
http://openvrml.svn.sourceforge.net/openvrml/?rev=3971&view=rev
Author: braden
Date: 2009-07-13 08:40:34 +0000 (Mon, 13 Jul 2009)
Log Message:
-----------
Apply OPENVRML_API to *_get_type functions for GTK+ widgets. GtkBuilder needs to see these symbols when reading UI XML.
Modified Paths:
--------------
trunk/ChangeLog
trunk/src/openvrml-player/curlbrowserhost.h
trunk/src/openvrml-player/filechooserdialog.h
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2009-07-12 06:41:03 UTC (rev 3970)
+++ trunk/ChangeLog 2009-07-13 08:40:34 UTC (rev 3971)
@@ -1,3 +1,11 @@
+2009-07-13 Braden McDaniel <br...@en...>
+
+ Apply OPENVRML_API to *_get_type functions for GTK+ widgets.
+ GtkBuilder needs to see these symbols when reading UI XML.
+
+ * src/openvrml-player/filechooserdialog.h
+ * src/openvrml-player/curlbrowserhost.h
+
2009-07-12 Braden McDaniel <br...@en...>
Remove obsolete configuration code supporting linking with
Modified: trunk/src/openvrml-player/curlbrowserhost.h
===================================================================
--- trunk/src/openvrml-player/curlbrowserhost.h 2009-07-12 06:41:03 UTC (rev 3970)
+++ trunk/src/openvrml-player/curlbrowserhost.h 2009-07-13 08:40:34 UTC (rev 3971)
@@ -21,6 +21,7 @@
# include <dbus/dbus-glib.h>
# include <gtk/gtksocket.h>
+# include <openvrml-config.h>
# define OPENVRML_PLAYER_TYPE_CURL_BROWSER_HOST (openvrml_player_curl_browser_host_get_type())
# define OPENVRML_PLAYER_CURL_BROWSER_HOST(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), OPENVRML_PLAYER_TYPE_CURL_BROWSER_HOST, OpenvrmlPlayerCurlBrowserHost))
@@ -46,7 +47,7 @@
gchar * host_name;
};
-GType openvrml_player_curl_browser_host_get_type();
+OPENVRML_API GType openvrml_player_curl_browser_host_get_type();
void
openvrml_player_curl_browser_host_load_url(OpenvrmlPlayerCurlBrowserHost * host,
Modified: trunk/src/openvrml-player/filechooserdialog.h
===================================================================
--- trunk/src/openvrml-player/filechooserdialog.h 2009-07-12 06:41:03 UTC (rev 3970)
+++ trunk/src/openvrml-player/filechooserdialog.h 2009-07-13 08:40:34 UTC (rev 3971)
@@ -21,6 +21,7 @@
# define OPENVRML_PLAYER_FILE_CHOOSER_DIALOG_H
# include <gtk/gtkfilechooserdialog.h>
+# include <openvrml-config.h>
G_BEGIN_DECLS
@@ -42,7 +43,7 @@
GtkFileChooserDialog parent_instance;
};
-GType openvrml_player_file_chooser_dialog_get_type() G_GNUC_CONST;
+OPENVRML_API GType openvrml_player_file_chooser_dialog_get_type() G_GNUC_CONST;
G_END_DECLS
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|