From 4d4ce3a1c5c439635c9ddb7c7b3bf9dabfafbc4b Mon Sep 17 00:00:00 2001 From: Montel Laurent Date: Thu, 17 Jan 2013 08:03:50 +0100 Subject: [PATCH] Remove not necessary virtual keyword --- createnewcontactjob.h | 2 +- kmmainwin.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/createnewcontactjob.h b/createnewcontactjob.h index 418757696..b8dd589cf 100644 --- a/createnewcontactjob.h +++ b/createnewcontactjob.h @@ -46,7 +46,7 @@ public: /** * @brief start the job */ - virtual void start(); + void start(); private Q_SLOTS: void slotCollectionsFetched(KJob*); diff --git a/kmmainwin.h b/kmmainwin.h index f5529d6a6..98e7d51b8 100644 --- a/kmmainwin.h +++ b/kmmainwin.h @@ -58,9 +58,9 @@ public slots: protected: /// Reimplemented to save the docked state - virtual void saveProperties( KConfigGroup & ); + void saveProperties( KConfigGroup & ); - virtual bool queryClose (); + bool queryClose (); protected slots: void slotQuit();