summaryrefslogtreecommitdiffstats
path: root/filters/kspread/opencalc
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2023-11-05 11:54:26 +0900
committerMichele Calgaro <[email protected]>2023-11-16 23:37:57 +0900
commitef06f14f2475bd08d3ea2ceec54a7b2238f3554e (patch)
tree03df826633e4ba084d133ca977c4fc37c74f21ac /filters/kspread/opencalc
parent895081803a715ee89f4a90cfbf63d558ef2b2ebc (diff)
downloadkoffice-ef06f14f2475bd08d3ea2ceec54a7b2238f3554e.tar.gz
koffice-ef06f14f2475bd08d3ea2ceec54a7b2238f3554e.zip
Replace Qt with TQt
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'filters/kspread/opencalc')
-rw-r--r--filters/kspread/opencalc/opencalcexport.cpp2
-rw-r--r--filters/kspread/opencalc/opencalcimport.cpp12
2 files changed, 7 insertions, 7 deletions
diff --git a/filters/kspread/opencalc/opencalcexport.cpp b/filters/kspread/opencalc/opencalcexport.cpp
index 2db60420..8f8018c5 100644
--- a/filters/kspread/opencalc/opencalcexport.cpp
+++ b/filters/kspread/opencalc/opencalcexport.cpp
@@ -231,7 +231,7 @@ bool OpenCalcExport::exportDocInfo( KoStore * store, const Doc* ksdoc )
if ( dt.isValid() )
{
data = meta.createElement( "dc:date" );
- data.appendChild( meta.createTextNode( dt.toString( Qt::ISODate ) ) );
+ data.appendChild( meta.createTextNode( dt.toString( TQt::ISODate ) ) );
officeMeta.appendChild( data );
}
diff --git a/filters/kspread/opencalc/opencalcimport.cpp b/filters/kspread/opencalc/opencalcimport.cpp
index 6dc3216e..2ccf3173 100644
--- a/filters/kspread/opencalc/opencalcimport.cpp
+++ b/filters/kspread/opencalc/opencalcimport.cpp
@@ -2017,17 +2017,17 @@ void OpenCalcImport::loadBorder( Format * layout, TQString const & borderDef, bP
kdDebug(30518) << "Borderstyle: " << s << endl;
if ( s == "solid" || s == "double" )
- pen.setStyle( Qt::SolidLine );
+ pen.setStyle( TQt::SolidLine );
else
{
#if 0
// TODO: not supported by oocalc
- pen.setStyle( Qt::DashLine );
- pen.setStyle( Qt::DotLine );
- pen.setStyle( Qt::DashDotLine );
- pen.setStyle( Qt::DashDotDotLine );
+ pen.setStyle( TQt::DashLine );
+ pen.setStyle( TQt::DotLine );
+ pen.setStyle( TQt::DashDotLine );
+ pen.setStyle( TQt::DashDotDotLine );
#endif
- pen.setStyle( Qt::SolidLine ); //default.
+ pen.setStyle( TQt::SolidLine ); //default.
}
++p2;