Browse Source

CDBEnv: fix qt build

pull/145/head
Luke Dashjr 12 years ago
committed by Jeff Garzik
parent
commit
f9189543bf
  1. 1
      src/db.h
  2. 5
      src/qt/optionsmodel.cpp

1
src/db.h

@ -52,6 +52,7 @@ public:
void Flush(bool fShutdown);
void CheckpointLSN(std::string strFile);
void SetDetach(bool fDetachDB_) { fDetachDB = fDetachDB_; }
bool GetDetach() { return fDetachDB; }
void CloseDb(const std::string& strFile);

5
src/qt/optionsmodel.cpp

@ -128,7 +128,7 @@ QVariant OptionsModel::data(const QModelIndex & index, int role) const
case DisplayAddresses:
return QVariant(bDisplayAddresses);
case DetachDatabases:
return QVariant(fDetachDB);
return QVariant(bitdb.GetDetach());
case Language:
return settings.value("language", "");
default:
@ -215,7 +215,8 @@ bool OptionsModel::setData(const QModelIndex & index, const QVariant & value, in
}
break;
case DetachDatabases: {
fDetachDB = value.toBool();
bool fDetachDB = value.toBool();
bitdb.SetDetach(fDetachDB);
settings.setValue("detachDB", fDetachDB);
}
break;

Loading…
Cancel
Save