mirror of
https://github.com/qelectrotech/qelectrotech-source-mirror.git
synced 2025-12-17 12:40:35 +01:00
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:
@@ -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
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user