Don't cast const gchar* to gchar* soc.2008.masterpassword

Wed, 01 May 2013 14:18:19 +0200

author
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
date
Wed, 01 May 2013 14:18:19 +0200
branch
soc.2008.masterpassword
changeset 34174
b9e24fbc6e29
parent 34173
16c7de07a9cf
child 34175
46f3f2b66cb6

Don't cast const gchar* to gchar*

libpurple/plugins/keyrings/kwallet.cpp file | annotate | diff | comparison | revisions
--- a/libpurple/plugins/keyrings/kwallet.cpp	Wed May 01 11:52:20 2013 +0200
+++ b/libpurple/plugins/keyrings/kwallet.cpp	Wed May 01 14:18:19 2013 +0200
@@ -553,13 +553,13 @@
 	PURPLE_PLUGIN_FLAG_INVISIBLE,		/* flags */
 	NULL,					/* dependencies */
 	PURPLE_PRIORITY_DEFAULT,		/* priority */
-	(char*)KWALLET_ID,			/* id */
-	(char*)KWALLET_NAME,			/* name */
-	(char*)DISPLAY_VERSION,			/* version */
-	(char*)"KWallet Keyring Plugin",	/* summary */
-	(char*)KWALLET_DESCRIPTION,		/* description */
-	(char*)KWALLET_AUTHOR,			/* author */
-	(char*)PURPLE_WEBSITE,			/* homepage */
+	KWALLET_ID,				/* id */
+	KWALLET_NAME,				/* name */
+	DISPLAY_VERSION,			/* version */
+	"KWallet Keyring Plugin",		/* summary */
+	KWALLET_DESCRIPTION,			/* description */
+	KWALLET_AUTHOR,				/* author */
+	PURPLE_WEBSITE,				/* homepage */
 	kwallet_load,				/* load */
 	kwallet_unload,				/* unload */
 	NULL,					/* destroy */

mercurial