Changeset 47bfffb in confclerk_git for src/gui/mainwindow.cpp
- Timestamp:
- 01/29/10 15:37:22 (13 years ago)
- Branches:
- master, qt5
- Children:
- b0a3bc7
- Parents:
- 6645e1f
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/gui/mainwindow.cpp
r6645e1f r47bfffb 32 32 setupUi(this); 33 33 34 qDebug() << "Setting-up proxy: " << AppSettings::proxyAddress() << ":" << AppSettings::proxyPort(); 34 // first time run aplication: -> let's have it direct connection in this case 35 if(!AppSettings::contains("proxyIsDirectConnection")) 36 AppSettings::setDirectConnection(true); 37 38 if(AppSettings::isDirectConnection()) 39 { 40 qDebug() << "Setting-up proxy: " << AppSettings::proxyAddress() << ":" << AppSettings::proxyPort(); 41 } 35 42 QNetworkProxy proxy( 36 43 AppSettings::isDirectConnection() ? QNetworkProxy::NoProxy : QNetworkProxy::HttpProxy,
Note: See TracChangeset
for help on using the changeset viewer.