summaryrefslogtreecommitdiffstats
path: root/kspread/kspread_sheetprint.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kspread/kspread_sheetprint.cpp')
-rw-r--r--kspread/kspread_sheetprint.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/kspread/kspread_sheetprint.cpp b/kspread/kspread_sheetprint.cpp
index b8a3a919d..5520c5ad4 100644
--- a/kspread/kspread_sheetprint.cpp
+++ b/kspread/kspread_sheetprint.cpp
@@ -76,8 +76,8 @@ SheetPrint::SheetPrint( Sheet* sheet )
m_maxCheckedNewPageY = 1;
m_dPrintRepeatColumnsWidth = 0.0;
m_dPrintRepeatRowsHeight = 0.0;
- m_printRepeatColumns = tqMakePair( 0, 0 );
- m_printRepeatRows = tqMakePair( 0, 0 );
+ m_printRepeatColumns = qMakePair( 0, 0 );
+ m_printRepeatRows = qMakePair( 0, 0 );
m_dZoom = 1.0;
m_iPageLimitX = 0;
m_iPageLimitY = 0;
@@ -1734,7 +1734,7 @@ void SheetPrint::removeColumn( int col, int nbCol )
//Validity checks
if ( left < 1 ) left = 1;
if ( right < 1 ) right = 1;
- setPrintRepeatColumns ( tqMakePair( left, right ) );
+ setPrintRepeatColumns ( qMakePair( left, right ) );
}
}
@@ -1772,7 +1772,7 @@ void SheetPrint::removeRow( int row, int nbRow )
//Validity checks
if ( top < 1 ) top = 1;
if ( bottom < 1 ) bottom = 1;
- setPrintRepeatRows( tqMakePair( top, bottom ) );
+ setPrintRepeatRows( qMakePair( top, bottom ) );
}
}