Fix FTBFS on x86_64-w64-mingw32 cross-compilation, thank Joshua

git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4083 bfdf4180-ca20-0410-9c96-a3a8aa849046
This commit is contained in:
scorpio810
2015-08-03 05:43:44 +00:00
parent b025830100
commit 3c327009a5
8 changed files with 4 additions and 53 deletions

View File

@@ -23,16 +23,6 @@ TitleBlockCell::TitleBlockCell() {
TitleBlockCell::~TitleBlockCell() {
}
/**
@return A string representing the titleblock cell
*/
QString TitleBlockCell::toString() const {
if (cell_type == TitleBlockCell::EmptyCell) return("TitleBlockCell{null}");
QString span_desc = (row_span > 0 || col_span > 0) ? QString("+%1,%2").arg(row_span).arg(col_span) : QET::pointerString(spanner_cell);
QString base_desc = QString("TitleBlockCell{ [%1, %2] %3 }").arg(num_row).arg(num_col).arg(span_desc);
return(base_desc);
}
/**
@return the type of this cell
*/