From 5d06054d1a7073b8be44a5cde3370c58b1a4ae13 Mon Sep 17 00:00:00 2001 From: blacksun Date: Thu, 13 Jun 2013 17:06:37 +0000 Subject: [PATCH] fix a 'warning' at compilation git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@2262 bfdf4180-ca20-0410-9c96-a3a8aa849046 --- sources/numerotationcontextcommands.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/sources/numerotationcontextcommands.cpp b/sources/numerotationcontextcommands.cpp index 7d35fbe98..ffb02d9c4 100644 --- a/sources/numerotationcontextcommands.cpp +++ b/sources/numerotationcontextcommands.cpp @@ -226,6 +226,7 @@ FolioNum::FolioNum (Diagram *d): * @return the represented string of num */ QString FolioNum::toRepresentedString(const QString str) const { + Q_UNUSED(str); return (QString::number(diagram_ -> folioIndex() + 1)); }