diff options
author | Michele Calgaro <[email protected]> | 2023-11-24 10:47:46 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-11-24 10:47:46 +0900 |
commit | dcc4dc7a89e5f5f7fb4217815b892f4b0106d5a0 (patch) | |
tree | 28dc129d7fd7fc71945338cfb4207d5a9a9dbcb0 /kspread/kspread_sheet.cpp | |
parent | 10a82ab583d7608cd9efd5fe1e76700c9d06b4c2 (diff) | |
download | koffice-dcc4dc7a89e5f5f7fb4217815b892f4b0106d5a0.tar.gz koffice-dcc4dc7a89e5f5f7fb4217815b892f4b0106d5a0.zip |
Replaced various '#define' with actual strings - part 3
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'kspread/kspread_sheet.cpp')
-rw-r--r-- | kspread/kspread_sheet.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kspread/kspread_sheet.cpp b/kspread/kspread_sheet.cpp index 85e8f15f..8e20757e 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" ) ) |