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

@@ -583,21 +583,6 @@ void TitleBlockTemplate::initCells() {
#endif
}
/**
@return A string representing the titleblock template
@see TitleBlockCell::toString()
*/
QString TitleBlockTemplate::toString() const {
QString str = "\n";
for (int j = 0 ; j < rows_heights_.count() ; ++ j) {
for (int i = 0 ; i < columns_width_.count() ; ++ i) {
str += cells_[i][j] -> toString() + " ";
}
str += "\n";
}
return(str);
}
/**
@return the name of this template
*/