summaryrefslogtreecommitdiffstats
path: root/kspread/kspread_sheet.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_sheet.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_sheet.cpp')
-rw-r--r--kspread/kspread_sheet.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kspread/kspread_sheet.cpp b/kspread/kspread_sheet.cpp
index 85e8f15f7..8e20757e0 100644
--- a/kspread/kspread_sheet.cpp
+++ b/kspread/kspread_sheet.cpp
@@ -7941,7 +7941,7 @@ bool Sheet::loadXML( const TQDomElement& sheet )
{
int left = printrepeatcolumns.attribute( "left" ).toInt();
int right = printrepeatcolumns.attribute( "right" ).toInt();
- d->print->setPrintRepeatColumns( tqMakePair( left, right ) );
+ d->print->setPrintRepeatColumns( qMakePair( left, right ) );
}
// load print repeat rows
@@ -7950,7 +7950,7 @@ bool Sheet::loadXML( const TQDomElement& sheet )
{
int top = printrepeatrows.attribute( "top" ).toInt();
int bottom = printrepeatrows.attribute( "bottom" ).toInt();
- d->print->setPrintRepeatRows( tqMakePair( top, bottom ) );
+ d->print->setPrintRepeatRows( qMakePair( top, bottom ) );
}
if( !sheet.hasAttribute( "borders1.2" ) )