wilder-work
Laurent Montel 8 years ago
parent 4fef1b01a4
commit 3485e2d4ce
  1. 6
      src/aboutdata.h
  2. 4
      src/editor/composer.h
  3. 2
      src/editor/kmcomposereditorng.h
  4. 2
      src/editor/kmcomposerwin.h
  5. 4
      src/editor/widgets/snippetwidget.h
  6. 6
      src/identity/identitydialog.h
  7. 6
      src/identity/identitylistview.h
  8. 6
      src/identity/xfaceconfigurator.h
  9. 2
      src/kmkernel.h
  10. 2
      src/plugininterface/kmailplugininterface.h
  11. 2
      src/searchdialog/kmsearchmessagemodel.h
  12. 8
      src/secondarywindow.h
  13. 2
      src/sieveimapinterface/kmailsieveimapinstanceinterface.h
  14. 2
      src/widgets/statusbarlabeltoggledstate.h
  15. 4
      src/widgets/vacationscriptindicatorwidget.h

@ -29,8 +29,8 @@
your version.
*/
#ifndef __KMAIL_ABOUTDATA_H__
#define __KMAIL_ABOUTDATA_H__
#ifndef KMAIL_ABOUTDATA_H
#define KMAIL_ABOUTDATA_H
#include "kmail_export.h"
#include <KAboutData>
@ -44,4 +44,4 @@ public:
};
} // namespace KMail
#endif // __KMAIL_ABOUTDATA_H__
#endif // KMAIL_ABOUTDATA_H

@ -17,8 +17,8 @@
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#ifndef __KMAIL_COMPOSER_H__
#define __KMAIL_COMPOSER_H__
#ifndef KMAIL_COMPOSER_H
#define KMAIL_COMPOSER_H
#include "kmail_export.h"
#include "secondarywindow.h"

@ -28,7 +28,7 @@ class KMComposerEditorNg : public MessageComposer::RichTextComposerNg
Q_OBJECT
public:
explicit KMComposerEditorNg(KMComposerWin *win, QWidget *parent);
~KMComposerEditorNg();
~KMComposerEditorNg() override;
QString smartQuote(const QString &msg) override;

@ -120,7 +120,7 @@ class KMComposerWin : public KMail::Composer
private: // mailserviceimpl, kmkernel, kmcommands, callback, kmmainwidget
explicit KMComposerWin(const KMime::Message::Ptr &msg, bool lastSignState, bool lastEncryptState, TemplateContext context = NoTemplate, uint identity = 0,
const QString &textSelection = QString(), const QString &customTemplate = QString());
~KMComposerWin();
~KMComposerWin() override;
public:
static Composer *create(const KMime::Message::Ptr &msg, bool lastSignState, bool lastEncryptState, TemplateContext context = NoTemplate, uint identity = 0,

@ -11,8 +11,8 @@
* *
***************************************************************************/
#ifndef __SNIPPETWIDGET_H__
#define __SNIPPETWIDGET_H__
#ifndef KMAIL_SNIPPETWIDGET_H
#define KMAIL_SNIPPETWIDGET_H
#include <QTreeView>

@ -29,8 +29,8 @@
your version.
*/
#ifndef __KMAIL_IDENTITYDIALOG_H__
#define __KMAIL_IDENTITYDIALOG_H__
#ifndef KMAIL_IDENTITYDIALOG_H
#define KMAIL_IDENTITYDIALOG_H
#include <QDialog>
class QCheckBox;
@ -150,4 +150,4 @@ private:
};
} // namespace KMail
#endif // __KMAIL_IDENTITYDIALOG_H__
#endif // KMAIL_IDENTITYDIALOG_H

@ -30,8 +30,8 @@
your version.
*/
#ifndef __KMAIL_IDENTITYLISTVIEW_H__
#define __KMAIL_IDENTITYLISTVIEW_H__
#ifndef KMAIL_IDENTITYLISTVIEW_H
#define KMAIL_IDENTITYLISTVIEW_H
#include <QTreeWidget>
#include <QTreeWidgetItem>
@ -99,4 +99,4 @@ private:
};
} // namespace KMail
#endif // __KMAIL_IDENTITYLISTVIEW_H__
#endif // KMAIL_IDENTITYLISTVIEW_H

@ -14,8 +14,8 @@
Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, US
*/
#ifndef __KMAIL_XFACECONFIGURATOR_H__
#define __KMAIL_XFACECONFIGURATOR_H__
#ifndef KMAIL_XFACECONFIGURATOR_H
#define KMAIL_XFACECONFIGURATOR_H
#include <QWidget>
@ -55,4 +55,4 @@ private:
};
} // namespace KMail
#endif // __KMAIL_XFACECONFIGURATOR_H__
#endif // KMAIL_XFACECONFIGURATOR_H

@ -109,7 +109,7 @@ class KMAIL_EXPORT KMKernel : public QObject, public MailCommon::IKernel, public
public:
explicit KMKernel(QObject *parent = nullptr);
~KMKernel();
~KMKernel() override;
/**
* Start of D-Bus callable stuff. The D-Bus methods need to be public slots,

@ -28,7 +28,7 @@ class KMailPluginInterface : public PimCommon::PluginInterface
Q_OBJECT
public:
explicit KMailPluginInterface(QObject *parent = nullptr);
~KMailPluginInterface();
~KMailPluginInterface() override;
void setMainWidget(KMMainWidget *mainwindow);
void initializeInterfaceRequires(PimCommon::AbstractGenericPluginInterface *interface) override;

@ -45,7 +45,7 @@ public:
Size
};
explicit KMSearchMessageModel(QObject *parent = nullptr);
~KMSearchMessageModel();
~KMSearchMessageModel() override;
int columnCount(const QModelIndex &parent = QModelIndex()) const override;
QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override;

@ -28,8 +28,8 @@
you do not wish to do so, delete this exception statement from
your version.
*/
#ifndef __KMAIL_SECONDARYWINDOW_H__
#define __KMAIL_SECONDARYWINDOW_H__
#ifndef KMAIL_SECONDARYWINDOW_H
#define KMAIL_SECONDARYWINDOW_H
#include <kxmlguiwindow.h>
@ -46,7 +46,7 @@ class SecondaryWindow : public KXmlGuiWindow
public:
explicit SecondaryWindow(const QString &name = QString());
~SecondaryWindow();
~SecondaryWindow() override;
using KMainWindow::setCaption;
public Q_SLOTS:
/**
@ -66,4 +66,4 @@ protected:
};
} // namespace KMail
#endif // __KMAIL_SECONDARYWINDOW_H__
#endif // KMAIL_SECONDARYWINDOW_H

@ -26,7 +26,7 @@ class KMailSieveImapInstanceInterface : public KSieveUi::SieveImapInstanceInterf
{
public:
KMailSieveImapInstanceInterface();
~KMailSieveImapInstanceInterface() = default;
~KMailSieveImapInstanceInterface() override = default;
QVector<KSieveUi::SieveImapInstance> sieveImapInstances() override;
};

@ -27,7 +27,7 @@ class StatusBarLabelToggledState : public QLabel
Q_OBJECT
public:
explicit StatusBarLabelToggledState(QWidget *parent = nullptr);
~StatusBarLabelToggledState();
~StatusBarLabelToggledState() override;
void setToggleMode(bool state);

@ -29,7 +29,7 @@ class ServerLabel : public QLabel
Q_OBJECT
public:
explicit ServerLabel(const QString &toolTip, QWidget *parent = nullptr);
~ServerLabel();
~ServerLabel() override;
Q_SIGNALS:
void clicked(const QString &serverName);
@ -46,7 +46,7 @@ class VacationLabel : public QLabel
Q_OBJECT
public:
explicit VacationLabel(const QString &text, QWidget *parent = nullptr);
~VacationLabel();
~VacationLabel() override;
Q_SIGNALS:
void vacationLabelClicked();

Loading…
Cancel
Save