summaryrefslogtreecommitdiffstats
path: root/filters/kspread
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2023-11-24 10:47:46 +0900
committerMichele Calgaro <[email protected]>2023-11-24 22:32:24 +0900
commitf9893e5b16c7694da25e60805fe751691e127e85 (patch)
tree2b204fdab8798eaed0346d1b24bb646c6c89085c /filters/kspread
parent8263fdf7603821cad365e436ab78557f40a9e9db (diff)
downloadkoffice-f9893e5b16c7694da25e60805fe751691e127e85.tar.gz
koffice-f9893e5b16c7694da25e60805fe751691e127e85.zip
Replaced various '#define' with actual strings - part 3
Signed-off-by: Michele Calgaro <[email protected]> (cherry picked from commit dcc4dc7a89e5f5f7fb4217815b892f4b0106d5a0)
Diffstat (limited to 'filters/kspread')
-rw-r--r--filters/kspread/gnumeric/gnumericimport.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/filters/kspread/gnumeric/gnumericimport.cpp b/filters/kspread/gnumeric/gnumericimport.cpp
index 4b037ad1..d763fdef 100644
--- a/filters/kspread/gnumeric/gnumericimport.cpp
+++ b/filters/kspread/gnumeric/gnumericimport.cpp
@@ -915,7 +915,7 @@ void GNUMERICFilter::ParsePrintInfo( TQDomNode const & printInfo, Sheet * table
{
Range range(repeate);
//kdDebug()<<" repeate :"<<repeate<<"range. ::start row : "<<range.startRow ()<<" start col :"<<range.startCol ()<<" end row :"<<range.endRow ()<<" end col :"<<range.endCol ()<<endl;
- table->print()->setPrintRepeatRows( tqMakePair( range.startRow (),range.endRow ()) );
+ table->print()->setPrintRepeatRows( qMakePair( range.startRow (),range.endRow ()) );
}
}
@@ -929,7 +929,7 @@ void GNUMERICFilter::ParsePrintInfo( TQDomNode const & printInfo, Sheet * table
repeate = repeate.replace( "65536", "32500" );
Range range(repeate);
//kdDebug()<<" repeate :"<<repeate<<"range. ::start row : "<<range.startRow ()<<" start col :"<<range.startCol ()<<" end row :"<<range.endRow ()<<" end col :"<<range.endCol ()<<endl;
- table->print()->setPrintRepeatColumns( tqMakePair( range.startCol (),range.endCol ()) );
+ table->print()->setPrintRepeatColumns( qMakePair( range.startCol (),range.endCol ()) );
}
}