Astyle kdelibs

wilder-work
Montel Laurent 10 years ago
parent 5e2cc1162e
commit 5ab0ff3512
  1. 1
      agents/archivemailagent/archivemailagent.h
  2. 9
      src/configuredialog/configureappearancepage.cpp
  3. 1
      src/configuredialog/configuresecuritypage.h
  4. 9
      src/kmmainwidget.cpp
  5. 1
      src/tag/tagselectdialog.cpp

@ -54,7 +54,6 @@ public Q_SLOTS:
void pause();
void resume();
protected:
void doSetOnline(bool online) Q_DECL_OVERRIDE;

@ -518,12 +518,11 @@ AppearancePageLayoutTab::AppearancePageLayoutTab(QWidget *parent)
connect(mFolderListGroup, SIGNAL(buttonClicked(int)),
this, SLOT(slotEmitChanged()));
QHBoxLayout* folderCBHLayout = new QHBoxLayout;
mFolderQuickSearchCB = new QCheckBox( i18n("Show folder quick search field"), this );
QHBoxLayout *folderCBHLayout = new QHBoxLayout;
mFolderQuickSearchCB = new QCheckBox(i18n("Show folder quick search field"), this);
connect(mFolderQuickSearchCB, &QAbstractButton::toggled, this, &ConfigModuleTab::slotEmitChanged);
folderCBHLayout->addWidget( mFolderQuickSearchCB );
vlay->addLayout( folderCBHLayout );
folderCBHLayout->addWidget(mFolderQuickSearchCB);
vlay->addLayout(folderCBHLayout);
// "favorite folders view mode" radio buttons:
mFavoriteFoldersViewGroupBox = new QGroupBox(this);

@ -139,7 +139,6 @@ private:
Kleo::CryptoConfig *mConfig;
};
class GpgSettingsDialog : public KCMultiDialog
{
Q_OBJECT

@ -831,11 +831,12 @@ void KMMainWidget::readConfig()
createWidgets();
restoreCollectionFolderViewConfig();
Q_EMIT recreateGui();
} else if ( oldFolderQuickSearch != mEnableFolderQuickSearch ) {
if ( mEnableFolderQuickSearch )
} else if (oldFolderQuickSearch != mEnableFolderQuickSearch) {
if (mEnableFolderQuickSearch) {
mFolderTreeWidget->filterFolderLineEdit()->show();
else
} else {
mFolderTreeWidget->filterFolderLineEdit()->hide();
}
}
}
@ -1042,7 +1043,7 @@ void KMMainWidget::createWidgets()
mShowIntroductionAction->setEnabled(false);
}
}
if ( !KMailSettings::self()->enableFolderQuickSearch() ) {
if (!KMailSettings::self()->enableFolderQuickSearch()) {
mFolderTreeWidget->filterFolderLineEdit()->hide();
}

@ -17,7 +17,6 @@
Boston, MA 02110-1301, USA.
*/
#include "tagselectdialog.h"
#include "tag.h"
#include "kmkernel.h"

Loading…
Cancel
Save