[qet] [1550] Added a forgotten Q_UNUSED statement |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/qet Archives
]
Revision: 1550
Author: xavier
Date: 2012-03-05 23:15:27 +0100 (Mon, 05 Mar 2012)
Log Message:
-----------
Added a forgotten Q_UNUSED statement
Modified Paths:
--------------
branches/0.3/sources/titleblock/templatecommands.cpp
Modified: branches/0.3/sources/titleblock/templatecommands.cpp
===================================================================
--- branches/0.3/sources/titleblock/templatecommands.cpp 2012-03-05 18:14:36 UTC (rev 1549)
+++ branches/0.3/sources/titleblock/templatecommands.cpp 2012-03-05 22:15:27 UTC (rev 1550)
@@ -622,6 +622,8 @@
@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);