diff options
author | George Hazan <george.hazan@gmail.com> | 2014-01-02 11:42:34 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-01-02 11:42:34 +0000 |
commit | 517284b80db96b58ea68d7ba974345dc5a2236bb (patch) | |
tree | 4f179d2c825378aefced9008bd06857de1486db6 /protocols/Xfire/src/Xfire_game.h | |
parent | c0d3c16aab5f5f52ede1f49ffeeafce98e3d073d (diff) |
fix for extra icons in XFire
git-svn-id: http://svn.miranda-ng.org/main/trunk@7453 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Xfire/src/Xfire_game.h')
-rw-r--r-- | protocols/Xfire/src/Xfire_game.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/protocols/Xfire/src/Xfire_game.h b/protocols/Xfire/src/Xfire_game.h index 8fa5c7f5a2..f88d22dd6a 100644 --- a/protocols/Xfire/src/Xfire_game.h +++ b/protocols/Xfire/src/Xfire_game.h @@ -113,64 +113,64 @@ public: //dekonstruktor
~Xfire_game() {
//entferne dyn arrays
- if(path)
+ if (path)
{
delete[] path;
path=NULL;
}
- if(launchparams)
+ if (launchparams)
{
delete[] launchparams;
launchparams=NULL;
}
- if(networkparams)
+ if (networkparams)
{
delete[] networkparams;
networkparams=NULL;
}
- if(userparams)
+ if (userparams)
{
delete[] userparams;
userparams=NULL;
}
- if(pwparams)
+ if (pwparams)
{
delete[] pwparams;
pwparams=NULL;
}
- if(mustcontain)
+ if (mustcontain)
{
delete[] mustcontain;
mustcontain=NULL;
}
- if(notcontain)
+ if (notcontain)
{
delete[] notcontain;
notcontain=NULL;
}
- if(name)
+ if (name)
{
delete[] name;
name=NULL;
}
- if(extraparams)
+ if (extraparams)
{
delete[] extraparams;
extraparams=NULL;
}
- if(customgamename)
+ if (customgamename)
{
delete[] customgamename;
customgamename=NULL;
}
- if(statusmsg)
+ if (statusmsg)
{
delete[] statusmsg;
statusmsg=NULL;
}
for(unsigned int i = 0 ; i < mpath.size() ; i ++) {
- if(mpath.at(i)!=NULL)
+ if (mpath.at(i)!=NULL)
delete mpath.at(i);
}
mpath.clear();
|