diff options
Diffstat (limited to 'filters/kspread/gnumeric')
-rw-r--r-- | filters/kspread/gnumeric/gnumericimport.cpp | 4 |
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 ()) ); } } |