# HG changeset patch # User Tomasz Wasilczyk # Date 1367410699 -7200 # Node ID b9e24fbc6e2929d4436e610db45d6fdb847dc33e # Parent 16c7de07a9cf0f645001739abe2a3513591e1e6e Don't cast const gchar* to gchar* diff -r 16c7de07a9cf -r b9e24fbc6e29 libpurple/plugins/keyrings/kwallet.cpp --- 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 */