From: Risto Lintinen Date: Fri, 21 Aug 2009 10:01:48 +0000 (+0300) Subject: code warnings cleaned X-Git-Url: https://vcs.maemo.org/git/?p=qtmeetings;a=commitdiff_plain;h=11e5e6349ca6f86f864075fb9d38a778950cebf2 code warnings cleaned --- diff --git a/src/BusinessLogic/Engine.h b/src/BusinessLogic/Engine.h index 87625a3..39ba221 100644 --- a/src/BusinessLogic/Engine.h +++ b/src/BusinessLogic/Engine.h @@ -198,14 +198,13 @@ private: private: static QTime endOfTheDay; - - WindowManager *iWindowManager; QTimer *iIdleTimeCounter; Clock *iClock; QDate iCurrentDate; Configuration *iConfiguration; CommunicationManager *iCommunication; + WindowManager *iWindowManager; DeviceManager *iDevice; UIManager *iUIManager; diff --git a/src/BusinessLogic/UIManager.cpp b/src/BusinessLogic/UIManager.cpp index 6adc9e5..089eb9c 100644 --- a/src/BusinessLogic/UIManager.cpp +++ b/src/BusinessLogic/UIManager.cpp @@ -163,7 +163,7 @@ void UIManager::meetingsFetched( const QList &aMeetings ) } } -void UIManager::showMeetingProgressBar( Meeting *aMeeting ) +void UIManager::showMeetingProgressBar( Meeting */*aMeeting*/ ) { if ( iProgressBar != 0 ) { diff --git a/src/IO/Communication/CommunicationManager.cpp b/src/IO/Communication/CommunicationManager.cpp index 32d6ed9..0880920 100644 --- a/src/IO/Communication/CommunicationManager.cpp +++ b/src/IO/Communication/CommunicationManager.cpp @@ -6,7 +6,7 @@ #include #include #include -#include "../../Domain/Configuration/Configuration.h"; +#include "../../Domain/Configuration/Configuration.h" static const int ERROR_BASE=100; diff --git a/src/UserInterface/Views/RoomStatusIndicatorWidget.h b/src/UserInterface/Views/RoomStatusIndicatorWidget.h index 64978b0..bf82485 100644 --- a/src/UserInterface/Views/RoomStatusIndicatorWidget.h +++ b/src/UserInterface/Views/RoomStatusIndicatorWidget.h @@ -62,7 +62,7 @@ public slots: void currentRoomChanged( Room *aRoom ); - void viewResized(const QSize &newSize, const QSize &oldSize) { } + void viewResized(const QSize &/*newSize*/, const QSize &/*oldSize*/) { } void connectionEstablished(); diff --git a/src/UserInterface/Views/WeeklyViewWidget.h b/src/UserInterface/Views/WeeklyViewWidget.h index 79a1fee..0fcd1cb 100644 --- a/src/UserInterface/Views/WeeklyViewWidget.h +++ b/src/UserInterface/Views/WeeklyViewWidget.h @@ -123,7 +123,7 @@ public slots: * Handle possible resize changes after the view is resized * to match the window managers client area. */ - void viewResized(const QSize &newSize, const QSize &oldSize) { } + void viewResized(const QSize &/*newSize*/, const QSize &/*oldSize*/) { } void connectionEstablished();