1
0
mirror of git://projects.qi-hardware.com/gmenu2x.git synced 2025-04-21 12:27:27 +03:00

remove redundant assignments

This commit is contained in:
Lars-Peter Clausen
2010-05-02 20:02:21 +02:00
parent 7fd1ab032a
commit d4490ba85c
12 changed files with 0 additions and 13 deletions

View File

@@ -26,7 +26,6 @@ using namespace fastdelegate;
MenuSettingBool::MenuSettingBool(GMenu2X *gmenu2x, const string &name, const string &description, int *value)
: MenuSetting(gmenu2x,name,description) {
this->gmenu2x = gmenu2x;
_ivalue = value;
_value = NULL;
originalValue = *value != 0;
@@ -38,7 +37,6 @@ MenuSettingBool::MenuSettingBool(GMenu2X *gmenu2x, const string &name, const str
MenuSettingBool::MenuSettingBool(GMenu2X *gmenu2x, const string &name, const string &description, bool *value)
: MenuSetting(gmenu2x,name,description) {
this->gmenu2x = gmenu2x;
_value = value;
_ivalue = NULL;
originalValue = *value;