disabled auto-login for non windows systems.

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@1251 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
csoler 2009-05-17 12:58:15 +00:00
parent c82c7eea26
commit 529b0d7f04
2 changed files with 6 additions and 1 deletions

View File

@ -39,6 +39,8 @@ GeneralDialog::GeneralDialog(QWidget *parent)
/* Hide platform specific features */
#ifndef Q_WS_WIN
ui.chkRunRetroshareAtSystemStartup->setVisible(false);
ui.autologincheckBox->setEnabled(false) ;
ui.autologincheckBox->setChecked(false) ;
#endif
}

View File

@ -84,7 +84,10 @@ StartDialog::StartDialog(QWidget *parent, Qt::WFlags flags)
ui.loadButton -> setEnabled(false);
//ui.genName->setFocus(Qt::OtherFocusReason);
}
#ifndef Q_WS_WIN
ui.autoBox->setChecked(false) ;
ui.autoBox->setEnabled(false) ;
#endif
//ui.genFriend -> setText("<None Selected>");
}