summaryrefslogtreecommitdiffstats
path: root/filters/kspread/opencalc
diff options
context:
space:
mode:
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 2db60420f..8f8018c53 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 6dc3216ed..2ccf31739 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;