From 2759d92696cb081e58bdd049fcbb98ac7695c79c Mon Sep 17 00:00:00 2001 From: Kaj Wallin Date: Wed, 19 May 2010 10:21:35 +0300 Subject: [PATCH] Fixed unused parameter warning from userinfopanel.cpp and added two debian packaging generated files to .gitignore Reviewed by: Ville Tiensuu --- .gitignore | 3 ++- src/ui/userpanel.cpp | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index b4e92d8..1874bce 100644 --- a/.gitignore +++ b/.gitignore @@ -17,4 +17,5 @@ doc/doxygen/* situare mainwindow_test qrc_images.cpp - +build-stamp +debian/situare.substvars diff --git a/src/ui/userpanel.cpp b/src/ui/userpanel.cpp index 031a598..1fd4584 100644 --- a/src/ui/userpanel.cpp +++ b/src/ui/userpanel.cpp @@ -102,6 +102,7 @@ void UserInfoPanel::reDrawUserPanel(int width, int height) { qDebug() << __PRETTY_FUNCTION__; Q_UNUSED(width); + Q_UNUSED(height); m_panelBase->resize(USERPANEL_WIDTH, SLIDINGBAR_HEIGHT + MARGIN_CORRECTION); resize(USERPANEL_WIDTH + SLIDINGBAR_WIDTH,SLIDINGBAR_HEIGHT + MARGIN_CORRECTION); } -- 1.7.9.5