#include <miscSettings.h>
Definition at line 23 of file miscSettings.h.
Public Member Functions | |
| MiscSettings () | |
Static Public Member Functions | |
| void | setDefaults (Configuration *config) |
|
|
Definition at line 27 of file miscSettings.h. 00027 { }
|
|
|
Definition at line 19 of file miscSettings.cpp. References Configuration::setBool(), and Configuration::setInt(). Referenced by Window::Window(). 00020 {
00021 //true first time program is run, ensures "first run"
00022 //dialog is only brought up once and never again
00023 config->setBool( "misc", "firstRun", true );
00024
00025 //warn users they are running a CVS build if they are
00026 config->setBool( "misc", "cvsWarn", true );
00027
00028 //DPI below which users will be warned during cropping
00029 config->setInt( "misc", "minDPI", 250 );
00030 }
|
1.3.9.1