diff options
| author | sirius-m <sirius-m@1a98c847-1fd6-4fd8-948a-caf3550aa51b> | 2009-09-24 04:09:56 +0000 |
|---|---|---|
| committer | sirius-m <sirius-m@1a98c847-1fd6-4fd8-948a-caf3550aa51b> | 2009-09-24 04:09:56 +0000 |
| commit | d1b70ffa03863b810813dd9d098b38500d4be424 (patch) | |
| tree | a25e3f5a25f5eaf3da566d9d1f6dd3e034289b60 /db.cpp | |
| parent | No dll's here (diff) | |
| download | discoin-d1b70ffa03863b810813dd9d098b38500d4be424.tar.xz discoin-d1b70ffa03863b810813dd9d098b38500d4be424.zip | |
tray icon + ask before closing
Diffstat (limited to 'db.cpp')
| -rw-r--r-- | db.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -575,6 +575,11 @@ bool CWalletDB::LoadWallet(vector<unsigned char>& vchDefaultKeyRet) if (strKey == "fGenerateBitcoins") ssValue >> fGenerateBitcoins;
if (strKey == "nTransactionFee") ssValue >> nTransactionFee;
if (strKey == "addrIncoming") ssValue >> addrIncoming;
+ if (strKey == "minimizeToTray") ssValue >> minimizeToTray;
+ if (strKey == "closeToTray") ssValue >> closeToTray;
+ if (strKey == "startOnSysBoot") ssValue >> startOnSysBoot;
+ if (strKey == "askBeforeClosing") ssValue >> askBeforeClosing;
+ if (strKey == "alwaysShowTrayIcon") ssValue >> alwaysShowTrayIcon;
}
}
}
|