Browse Source

move most explicit getters in optionsmodel to header

- is more consistent and saves quite some lines of code
0.8
Philip Kaufmann 12 years ago
parent
commit
7bc65ff108
  1. 20
      src/qt/optionsmodel.cpp
  2. 8
      src/qt/optionsmodel.h

20
src/qt/optionsmodel.cpp

@ -262,23 +262,3 @@ qint64 OptionsModel::getTransactionFee() @@ -262,23 +262,3 @@ qint64 OptionsModel::getTransactionFee()
{
return nTransactionFee;
}
bool OptionsModel::getMinimizeToTray()
{
return fMinimizeToTray;
}
bool OptionsModel::getMinimizeOnClose()
{
return fMinimizeOnClose;
}
int OptionsModel::getDisplayUnit()
{
return nDisplayUnit;
}
bool OptionsModel::getDisplayAddresses()
{
return bDisplayAddresses;
}

8
src/qt/optionsmodel.h

@ -44,10 +44,10 @@ public: @@ -44,10 +44,10 @@ public:
/* Explicit getters */
qint64 getTransactionFee();
bool getMinimizeToTray();
bool getMinimizeOnClose();
int getDisplayUnit();
bool getDisplayAddresses();
bool getMinimizeToTray() { return fMinimizeToTray; }
bool getMinimizeOnClose() { return fMinimizeOnClose; }
int getDisplayUnit() { return nDisplayUnit; }
bool getDisplayAddresses() { return bDisplayAddresses; }
QString getLanguage() { return language; }
private:

Loading…
Cancel
Save