summaryrefslogtreecommitdiffstats
path: root/kspread/kspread_sheetprint.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-11-24 10:47:46 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-11-24 22:32:24 +0900
commitf9893e5b16c7694da25e60805fe751691e127e85 (patch)
tree2b204fdab8798eaed0346d1b24bb646c6c89085c /kspread/kspread_sheetprint.cpp
parent8263fdf7603821cad365e436ab78557f40a9e9db (diff)
downloadkoffice-f9893e5b.tar.gz
koffice-f9893e5b.zip
Replaced various '#define' with actual strings - part 3
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit dcc4dc7a89e5f5f7fb4217815b892f4b0106d5a0)
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 ) );
}
}