Browse Source

Merge pull request #1 from zetok/rm-bloat

Remove redundancy from settings tabs
pull/452/head
krepa098 11 years ago
parent
commit
e7603c724c
  1. 2
      src/widget/form/settings/avform.cpp
  2. 2
      src/widget/form/settings/generalform.cpp
  3. 2
      src/widget/form/settings/identityform.cpp
  4. 2
      src/widget/form/settings/privacyform.cpp

2
src/widget/form/settings/avform.cpp

@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@
#include "ui_avsettings.h"
AVForm::AVForm() :
GenericForm(tr("Audio/Video settings"), QPixmap(":/img/settings/av.png"))
GenericForm(tr("Audio/Video"), QPixmap(":/img/settings/av.png"))
{
bodyUI = new Ui::AVSettings;
bodyUI->setupUi(this);

2
src/widget/form/settings/generalform.cpp

@ -24,7 +24,7 @@ @@ -24,7 +24,7 @@
#include <QStyleFactory>
GeneralForm::GeneralForm(SettingsWidget *myParent) :
GenericForm(tr("General Settings"), QPixmap(":/img/settings/general.png"))
GenericForm(tr("General"), QPixmap(":/img/settings/general.png"))
{
parent = myParent;

2
src/widget/form/settings/identityform.cpp

@ -31,7 +31,7 @@ @@ -31,7 +31,7 @@
#include <QMessageBox>
IdentityForm::IdentityForm() :
GenericForm(tr("Your identity"), QPixmap(":/img/settings/identity.png"))
GenericForm(tr("Identity"), QPixmap(":/img/settings/identity.png"))
{
bodyUI = new Ui::IdentitySettings;
bodyUI->setupUi(this);

2
src/widget/form/settings/privacyform.cpp

@ -18,7 +18,7 @@ @@ -18,7 +18,7 @@
#include "src/widget/form/settingswidget.h"
PrivacyForm::PrivacyForm() :
GenericForm(tr("Privacy settings"), QPixmap(":/img/settings/privacy.png"))
GenericForm(tr("Privacy"), QPixmap(":/img/settings/privacy.png"))
{
}

Loading…
Cancel
Save