~neon/kiten/master

« back to all changes in this revision

Viewing changes to app/kiten.h

  • Committer: Laurent Montel
  • Date: 2019-09-12 06:56:51 UTC
  • Revision ID: git-v1:88453e4f356fe0b3dd3f1845de3804969cdaf6c6
Use nullptr + override

Show diffs side-by-side

added added

removed removed

Lines of Context:
55
55
 
56
56
  //Constructors and other setup/takedown related methods
57
57
  public:
58
 
    explicit Kiten( QWidget *parent = nullptr, const char *name = 0 );
 
58
    explicit Kiten( QWidget *parent = nullptr, const char *name = nullptr );
59
59
            ~Kiten();
60
60
 
61
61
    KitenConfigSkeleton *getConfig();
68
68
  protected:
69
69
    void setupActions();
70
70
    void setupExportListDock();
71
 
    bool queryClose() override; //overridden from KXmlGuiWindow (called@shutdown) Q_DECL_OVERRIDE
 
71
    bool queryClose() override; //overridden from KXmlGuiWindow (called@shutdown) override
72
72
 
73
73
  private slots:
74
74
    void finishInit();