summaryrefslogtreecommitdiffstats
path: root/kresources/blogging/API_Blogger.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kresources/blogging/API_Blogger.cpp')
-rw-r--r--kresources/blogging/API_Blogger.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/kresources/blogging/API_Blogger.cpp b/kresources/blogging/API_Blogger.cpp
index 5cca14e1..c5e3c4a6 100644
--- a/kresources/blogging/API_Blogger.cpp
+++ b/kresources/blogging/API_Blogger.cpp
@@ -37,7 +37,7 @@ TQString APIBlogger::getFunctionName( blogFunctions type )
case bloggerGetPost: return "blogger.getPost";
case bloggerGetTemplate: return "blogger.getTemplate";
case bloggerSetTemplate: return "blogger.setTemplate";
- default: return TQString::null;
+ default: return TQString();
}
}
@@ -259,22 +259,22 @@ bool APIBlogger::readPostingFromMap( BlogPosting *post, const TQMap<TQString, TQ
TQStringList mapkeys = postInfo.keys();
kdDebug() << endl << "Keys: " << mapkeys.join(", ") << endl << endl;
- TQString fp( TQString::null );
+ TQString fp( TQString() );
TQDateTime dt( postInfo[ "dateCreated" ].toDateTime() );
if ( dt.isValid() && !dt.isNull() ) {
post->setCreationDateTime( dt );
- TQString fp = dt.toString( Qt::ISODate );
+ TQString fp = dt.toString( TQt::ISODate );
}
dt = postInfo[ "postDate" ].toDateTime();
if ( dt.isValid() && !dt.isNull() ) {
post->setDateTime( dt );
- fp = dt.toString( Qt::ISODate );
+ fp = dt.toString( TQt::ISODate );
}
dt = postInfo[ "lastModified" ].toDateTime();
if ( dt.isValid() && !dt.isNull() ) {
post->setModificationDateTime( dt );
- fp = dt.toString( Qt::ISODate );
+ fp = dt.toString( TQt::ISODate );
}
post->setFingerprint( fp );
@@ -299,8 +299,8 @@ bool APIBlogger::readPostingFromMap( BlogPosting *post, const TQMap<TQString, TQ
TQString titleTagOpen = mTemplate.titleTagOpen();
TQString titleTagClose = mTemplate.titleTagClose();
- int catStart = contents.find( catTagOpen, 0, false ) + catTagOpen.length();
- int catEnd = contents.find( catTagClose, 0, false );
+ int catStart = contents.tqfind( catTagOpen, 0, false ) + catTagOpen.length();
+ int catEnd = contents.tqfind( catTagClose, 0, false );
kdDebug() << " catTagOpen = " << catTagOpen << ", catTagClose = " << catTagClose << ", start - end : " << catStart <<" - " << catEnd << endl;
if ( catEnd > catStart ) {
category = contents.mid( catStart, catEnd - catStart );
@@ -308,8 +308,8 @@ kdDebug() << " catTagOpen = " << catTagOpen << ", catTagClose = " << catTagClos
contents = contents.remove( catStart - catTagOpen.length(),
catEnd - catStart + catTagClose.length() + catTagOpen.length() );
}
- int titleStart = contents.find( titleTagOpen, 0, false ) + titleTagOpen.length();
- int titleEnd = contents.find( titleTagClose, 0, false );
+ int titleStart = contents.tqfind( titleTagOpen, 0, false ) + titleTagOpen.length();
+ int titleEnd = contents.tqfind( titleTagClose, 0, false );
kdDebug() << " titleTagOpen = " << titleTagOpen << ", titleTagClose = " << titleTagClose << ", start - end : " << titleStart <<" - " << titleEnd << endl;
kdDebug() << "Title start and end: " << titleStart << ", " << titleEnd << endl;
if ( titleEnd > titleStart ) {