diff options
| author | 2012-12-22 01:53:14 +0000 | |
|---|---|---|
| committer | 2012-12-22 01:53:14 +0000 | |
| commit | a7572583e8a7f0ed963da2238870170bc3bf12ed (patch) | |
| tree | 3e82d3b87f446fedd7a01924d8d4f281bdf5b140 /src/modules/setup/SetupWizard.cpp | |
| parent | Fixed compilation with qt5rc1 (diff) | |
| download | KVIrc-a7572583e8a7f0ed963da2238870170bc3bf12ed.tar.gz KVIrc-a7572583e8a7f0ed963da2238870170bc3bf12ed.tar.bz2 KVIrc-a7572583e8a7f0ed963da2238870170bc3bf12ed.zip | |
Compile and run with Qt5.0. Also add a couple of KVS functions for byte order conversion.
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@6297 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/setup/SetupWizard.cpp')
| -rw-r--r-- | src/modules/setup/SetupWizard.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/modules/setup/SetupWizard.cpp b/src/modules/setup/SetupWizard.cpp index e9017a24a..9aa3447d1 100644 --- a/src/modules/setup/SetupWizard.cpp +++ b/src/modules/setup/SetupWizard.cpp @@ -299,7 +299,7 @@ SetupWizard::SetupWizard() #endif // Pragma: Unused, takes only space. //m_pDirRestore = new QRadioButton(__tr2qs("Restore from backup archive"),m_pDirButtonGroup); - //m_pDirRestore->setEnabled(FALSE); + //m_pDirRestore->setEnabled(false); //l = new QLabel(m_pDirectory->m_pVBox,"<b> </b>"); @@ -526,7 +526,7 @@ SetupWizard::SetupWizard() { KviConfigurationFile cfg(szTmp,KviConfigurationFile::Read); cfg.setGroup("Setup"); - if(cfg.readBoolEntry("hideServerList",FALSE)) + if(cfg.readBoolEntry("hideServerList",false)) { //setPageEnabled(m_pServers,false); //setFinishEnabled(m_pIdentity,true); @@ -1075,12 +1075,12 @@ void SetupWizard::accept() if(m_pServersSpecifyManually->isOn()) { - KVI_OPTION_BOOL(KviOption_boolShowServersConnectDialogOnStart) = FALSE; + KVI_OPTION_BOOL(KviOption_boolShowServersConnectDialogOnStart) = false; szHost = m_szServerHost; uPort=m_uServerPort; } else if(m_pServersOpenIrcUrl->isOn()) { - KVI_OPTION_BOOL(KviOption_boolShowServersConnectDialogOnStart) = FALSE; + KVI_OPTION_BOOL(KviOption_boolShowServersConnectDialogOnStart) = false; szUrl=m_szServerUrl; } */ |
