disabled calling load() from each page, we using load now from RSettingsWin

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@1656 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
defnax 2009-09-16 00:03:51 +00:00
parent 8b7045f1c2
commit c3e68f3842
5 changed files with 5 additions and 5 deletions

View File

@ -50,7 +50,7 @@ AppearancePage::AppearancePage(QWidget * parent, Qt::WFlags flags)
//loadStyleSheet("Default"); //loadStyleSheet("Default");
loadqss(); loadqss();
load(); //load();
/* Hide platform specific features */ /* Hide platform specific features */

View File

@ -33,7 +33,7 @@ DirectoriesPage::DirectoriesPage(QWidget * parent, Qt::WFlags flags)
ui.setupUi(this); ui.setupUi(this);
setAttribute(Qt::WA_QuitOnClose, false); setAttribute(Qt::WA_QuitOnClose, false);
load(); //load();
connect(ui.incomingButton, SIGNAL(clicked( bool ) ), this , SLOT( setIncomingDirectory() ) ); connect(ui.incomingButton, SIGNAL(clicked( bool ) ), this , SLOT( setIncomingDirectory() ) );
connect(ui.partialButton, SIGNAL(clicked( bool ) ), this , SLOT( setPartialsDirectory() ) ); connect(ui.partialButton, SIGNAL(clicked( bool ) ), this , SLOT( setPartialsDirectory() ) );

View File

@ -34,7 +34,7 @@ GeneralPage::GeneralPage(QWidget * parent, Qt::WFlags flags)
/* Create RshareSettings object */ /* Create RshareSettings object */
_settings = new RshareSettings(); _settings = new RshareSettings();
load(); //load();
/* Hide platform specific features */ /* Hide platform specific features */
#ifndef Q_WS_WIN #ifndef Q_WS_WIN

View File

@ -42,7 +42,7 @@ NotifyPage::NotifyPage(QWidget * parent, Qt::WFlags flags)
/* Create RshareSettings object */ /* Create RshareSettings object */
_settings = new RshareSettings(); _settings = new RshareSettings();
load(); //load();
//QTimer *timer = new QTimer(this); //QTimer *timer = new QTimer(this);
//timer->connect(timer, SIGNAL(timeout()), this, SLOT(updateStatus())); //timer->connect(timer, SIGNAL(timeout()), this, SLOT(updateStatus()));

View File

@ -49,7 +49,7 @@ ServerPage::ServerPage(QWidget * parent, Qt::WFlags flags)
timer->connect(timer, SIGNAL(timeout()), this, SLOT(updateStatus())); timer->connect(timer, SIGNAL(timeout()), this, SLOT(updateStatus()));
timer->start(1000); timer->start(1000);
load(); //load();
updateStatus(); updateStatus();
bool b = rsPeers->getAllowServerIPDetermination() ; bool b = rsPeers->getAllowServerIPDetermination() ;