renamed Security page Profile. Disabled profile manager for now, since generating a new profile while RS is running corrupts the current session. More work is needed to make the profile manager usable which RS is running.

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@6241 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
csoler 2013-03-18 14:16:22 +00:00
parent 2cd709d4bf
commit a850b18be2
2 changed files with 4 additions and 1 deletions

View File

@ -48,6 +48,9 @@ CryptoPage::CryptoPage(QWidget * parent, Qt::WFlags flags)
connect(ui._copyLink_PB, SIGNAL(clicked()), this, SLOT(copyRSLink()));
connect(ui._useOldFormat_CB, SIGNAL(toggled(bool)), this, SLOT(load()));
// hide profile manager as it causes bugs when generating a new profile.
ui.profile_Button->hide() ;
/* Hide platform specific features */
#ifdef Q_WS_WIN

View File

@ -40,7 +40,7 @@ class CryptoPage : public ConfigPage
/** Loads the settings for this page */
virtual QPixmap iconPixmap() const { return QPixmap(":/images/encrypted32.png") ; }
virtual QString pageName() const { return tr("Security") ; }
virtual QString pageName() const { return tr("Profile") ; }
private slots:
virtual void load();