From f22753a58671281e02e2f65f2d8b6b5ef0469e54 Mon Sep 17 00:00:00 2001 From: defnax Date: Thu, 10 Jun 2010 12:35:13 +0000 Subject: [PATCH] removed release defines from Connect Friend Wizard git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@3098 b45a01b8-16f6-495d-af2f-9b41ad6348cc --- retroshare-gui/src/gui/connect/ConnectFriendWizard.cpp | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/retroshare-gui/src/gui/connect/ConnectFriendWizard.cpp b/retroshare-gui/src/gui/connect/ConnectFriendWizard.cpp index c3f9eedd3..9c1d608b5 100755 --- a/retroshare-gui/src/gui/connect/ConnectFriendWizard.cpp +++ b/retroshare-gui/src/gui/connect/ConnectFriendWizard.cpp @@ -76,11 +76,8 @@ ConnectFriendWizard::ConnectFriendWizard(QWidget *parent) setPage(Page_ErrorMessage, new ErrorMessagePage); setPage(Page_Conclusion, new ConclusionPage); - #ifndef RS_RELEASE_VERSION setStartId(Page_Intro); - #else - setStartId(Page_Text); - #endif + // this define comes from Qt example. I don't have mac, so it wasn't tested #ifndef Q_WS_MAC @@ -175,10 +172,8 @@ IntroPage::IntroPage(QWidget *parent) QVBoxLayout *layout = new QVBoxLayout; layout->addWidget(textRadioButton); - #ifndef RS_RELEASE_VERSION layout->addWidget(certRadioButton); layout->addWidget(foffRadioButton); - #endif setLayout(layout); } //