diff options
author | Michele Calgaro <[email protected]> | 2023-11-26 02:19:19 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-11-26 02:19:19 +0900 |
commit | b727f4b3b1957bec28a350575237b93f8f278cdb (patch) | |
tree | 798a12c2a92121c5683a7a0338fdaec289e1c7fd /filters/kspread/html | |
parent | dcc4dc7a89e5f5f7fb4217815b892f4b0106d5a0 (diff) | |
download | koffice-b727f4b3b1957bec28a350575237b93f8f278cdb.tar.gz koffice-b727f4b3b1957bec28a350575237b93f8f278cdb.zip |
Replaced various '#define' with actual strings - part 4
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'filters/kspread/html')
-rw-r--r-- | filters/kspread/html/htmlexport.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/filters/kspread/html/htmlexport.cpp b/filters/kspread/html/htmlexport.cpp index f680207e..68f4081c 100644 --- a/filters/kspread/html/htmlexport.cpp +++ b/filters/kspread/html/htmlexport.cpp @@ -89,7 +89,7 @@ KoFilter::ConversionStatus HTMLExport::convert( const TQCString& from, const TQC if ( !document ) return KoFilter::StupidError; - if( !::tqqt_cast<const KSpread::Doc *>( document ) ) // it's safer that way :) + if( !::tqt_cast<const KSpread::Doc *>( document ) ) // it's safer that way :) { kdWarning(30501) << "document isn't a KSpread::Doc but a " << document->className() << endl; return KoFilter::NotImplemented; |