gnome-games r7687 - trunk/gnometris



Author: jclinton
Date: Tue Jun 10 02:00:57 2008
New Revision: 7687
URL: http://svn.gnome.org/viewvc/gnome-games?rev=7687&view=rev

Log:
Solve additional implicit gchar* conversion problems.


Modified:
   trunk/gnometris/tetris.cpp

Modified: trunk/gnometris/tetris.cpp
==============================================================================
--- trunk/gnometris/tetris.cpp	(original)
+++ trunk/gnometris/tetris.cpp	Tue Jun 10 02:00:57 2008
@@ -93,12 +93,12 @@
 	GtkWidget *menubar;
 
 	gchar *outdir;
-	const GtkTargetEntry targets[] = {{"text/uri-list", 0, URI_LIST}, 
-					  {"property/bgimage", 0, URI_LIST},
-					  {"text/plain", 0, TEXT_PLAIN},
-					  {"STRING", 0, TEXT_PLAIN},
-					  {"application/x-color", 0, COLOUR},
-					  {"x-special/gnome-reset-background", 0, RESET}};
+	const GtkTargetEntry targets[] = {{(gchar*) "text/uri-list", 0, URI_LIST}, 
+					  {(gchar*) "property/bgimage", 0, URI_LIST},
+					  {(gchar*) "text/plain", 0, TEXT_PLAIN},
+					  {(gchar*) "STRING", 0, TEXT_PLAIN},
+					  {(gchar*) "application/x-color", 0, COLOUR},
+					  {(gchar*) "x-special/gnome-reset-background", 0, RESET}};
 
 	const GtkActionEntry actions[] = {
 	{ "GameMenu", NULL, N_("_Game") },



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]