From 9f626559144f07e62f62cd2a5e4cace4ad20929d Mon Sep 17 00:00:00 2001 From: xavier Date: Mon, 5 Mar 2012 22:15:27 +0000 Subject: [PATCH] Added a forgotten Q_UNUSED statement git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/branches/0.3@1550 bfdf4180-ca20-0410-9c96-a3a8aa849046 --- sources/titleblock/templatecommands.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sources/titleblock/templatecommands.cpp b/sources/titleblock/templatecommands.cpp index d05f37f8a..94cfe3848 100644 --- a/sources/titleblock/templatecommands.cpp +++ b/sources/titleblock/templatecommands.cpp @@ -622,6 +622,8 @@ MergeCellsCommand::~MergeCellsCommand() { @return true if the merge is feasible, false otherwise */ bool MergeCellsCommand::canMerge(const TitleBlockTemplateCellsSet &merged_cells, TitleBlockTemplate *tbtemplate) { + Q_UNUSED(tbtemplate) + // basic checks if (!merged_cells.isRectangle()) return(false); if (merged_cells.count() < 2) return(false);