X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;ds=sidebyside;f=src%2Fdialogs.h;h=726ea932c507957b7bd5d04c6631e3ce0029aece;hb=f1303ea0f1188b0a89846c67b5783f596e7ba1b7;hp=3b76d9504460b2bd5992422a39b6fbf1edd480f3;hpb=b161e504433ad5d62dd2ecb0e325da73718f00a3;p=ctsim.git diff --git a/src/dialogs.h b/src/dialogs.h index 3b76d95..726ea93 100644 --- a/src/dialogs.h +++ b/src/dialogs.h @@ -9,7 +9,7 @@ ** This is part of the CTSim program ** Copyright (c) 1983-2001 Kevin Rosenberg ** -** $Id: dialogs.h,v 1.27 2001/02/16 00:28:41 kevin Exp $ +** $Id: dialogs.h,v 1.28 2001/02/21 20:13:03 kevin Exp $ ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License (version 2) as @@ -112,15 +112,18 @@ class DialogGetComparisonImage : public wxDialog class DialogPreferences : public wxDialog { public: - DialogPreferences (wxWindow* pParent, const char* const pszTitle, bool bAdvanced, bool bAskNewDocs); + DialogPreferences (wxWindow* pParent, const char* const pszTitle, bool bAdvanced, bool bAskNewDocs, + bool bVerboseLogging); virtual ~DialogPreferences (); bool getAdvancedOptions (); bool getAskDeleteNewDocs (); + bool getVerboseLogging (); private: wxCheckBox* m_pCBAdvancedOptions; wxCheckBox* m_pCBAskDeleteNewDocs; + wxCheckBox* m_pCBVerboseLogging; };