summaryrefslogtreecommitdiffstats
path: root/kbugbuster/backend/bug.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:51:49 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:51:49 +0000
commit4ae0c208b66e0f7954e194384464fe2d0a2c56dd (patch)
treeb0a7cd1c184f0003c0292eb416ed27f674f9cc43 /kbugbuster/backend/bug.cpp
parent1964ea0fb4ab57493ca2ebb709c8d3b5395fd653 (diff)
downloadtdesdk-4ae0c208b66e0f7954e194384464fe2d0a2c56dd.tar.gz
tdesdk-4ae0c208b66e0f7954e194384464fe2d0a2c56dd.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdesdk@1157652 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kbugbuster/backend/bug.cpp')
-rw-r--r--kbugbuster/backend/bug.cpp64
1 files changed, 32 insertions, 32 deletions
diff --git a/kbugbuster/backend/bug.cpp b/kbugbuster/backend/bug.cpp
index 4523652e..aaa61273 100644
--- a/kbugbuster/backend/bug.cpp
+++ b/kbugbuster/backend/bug.cpp
@@ -21,9 +21,9 @@ Bug::Bug( const Bug &other )
(*this) = other;
}
-Bug Bug::fromNumber( const QString &bugNumber )
+Bug Bug::fromNumber( const TQString &bugNumber )
{
- return new BugImpl( QString::null, Person(), bugNumber, 0xFFFFFFFF, Normal, Person(),
+ return new BugImpl( TQString::null, Person(), bugNumber, 0xFFFFFFFF, Normal, Person(),
Unconfirmed, Bug::BugMergeList() );
}
@@ -37,7 +37,7 @@ Bug::~Bug()
{
}
-QString Bug::severityLabel( Bug::Severity s )
+TQString Bug::severityLabel( Bug::Severity s )
{
switch ( s )
{
@@ -53,23 +53,23 @@ QString Bug::severityLabel( Bug::Severity s )
}
}
-QString Bug::severityToString( Bug::Severity s )
+TQString Bug::severityToString( Bug::Severity s )
{
switch ( s ) {
- case Critical: return QString::fromLatin1( "critical" );
- case Grave: return QString::fromLatin1( "grave" );
- case Major: return QString::fromLatin1( "major" );
- case Crash: return QString::fromLatin1( "crash" );
- case Normal: return QString::fromLatin1( "normal" );
- case Minor: return QString::fromLatin1( "minor" );
- case Wishlist: return QString::fromLatin1( "wishlist" );
+ case Critical: return TQString::fromLatin1( "critical" );
+ case Grave: return TQString::fromLatin1( "grave" );
+ case Major: return TQString::fromLatin1( "major" );
+ case Crash: return TQString::fromLatin1( "crash" );
+ case Normal: return TQString::fromLatin1( "normal" );
+ case Minor: return TQString::fromLatin1( "minor" );
+ case Wishlist: return TQString::fromLatin1( "wishlist" );
default:
kdWarning() << "Bug::severityToString invalid severity " << s << endl;
- return QString::fromLatin1( "<invalid>" );
+ return TQString::fromLatin1( "<invalid>" );
}
}
-Bug::Severity Bug::stringToSeverity( const QString &s, bool *ok )
+Bug::Severity Bug::stringToSeverity( const TQString &s, bool *ok )
{
if ( ok )
*ok = true;
@@ -88,14 +88,14 @@ Bug::Severity Bug::stringToSeverity( const QString &s, bool *ok )
return SeverityUndefined;
}
-QValueList<Bug::Severity> Bug::severities()
+TQValueList<Bug::Severity> Bug::severities()
{
- QValueList<Severity> s;
+ TQValueList<Severity> s;
s << Critical << Grave << Major << Crash << Normal << Minor << Wishlist;
return s;
}
-QString Bug::statusLabel( Bug::Status s )
+TQString Bug::statusLabel( Bug::Status s )
{
switch ( s )
{
@@ -109,21 +109,21 @@ QString Bug::statusLabel( Bug::Status s )
}
}
-QString Bug::statusToString( Bug::Status s )
+TQString Bug::statusToString( Bug::Status s )
{
switch ( s ) {
- case Unconfirmed: return QString::fromLatin1( "unconfirmed" );
- case New: return QString::fromLatin1( "new" );
- case Assigned: return QString::fromLatin1( "assigned" );
- case Reopened: return QString::fromLatin1( "reopened" );
- case Closed: return QString::fromLatin1( "closed" );
+ case Unconfirmed: return TQString::fromLatin1( "unconfirmed" );
+ case New: return TQString::fromLatin1( "new" );
+ case Assigned: return TQString::fromLatin1( "assigned" );
+ case Reopened: return TQString::fromLatin1( "reopened" );
+ case Closed: return TQString::fromLatin1( "closed" );
default:
kdWarning() << "Bug::statusToString invalid status " << s << endl;
- return QString::fromLatin1( "<invalid>" );
+ return TQString::fromLatin1( "<invalid>" );
}
}
-Bug::Status Bug::stringToStatus( const QString &s, bool *ok )
+Bug::Status Bug::stringToStatus( const TQString &s, bool *ok )
{
if ( ok )
*ok = true;
@@ -140,15 +140,15 @@ Bug::Status Bug::stringToStatus( const QString &s, bool *ok )
return StatusUndefined;
}
-QString Bug::title() const
+TQString Bug::title() const
{
if ( !m_impl )
- return QString::null;
+ return TQString::null;
return m_impl->title;
}
-void Bug::setTitle( QString title)
+void Bug::setTitle( TQString title)
{
if ( m_impl )
m_impl->title = title;
@@ -171,15 +171,15 @@ void Bug::setAge( uint age )
struct Person Bug::submitter() const
{
if ( !m_impl )
- return Person( QString::null, QString::null );
+ return Person( TQString::null, TQString::null );
return m_impl->submitter;
}
-QString Bug::number() const
+TQString Bug::number() const
{
if ( !m_impl )
- return QString::null;
+ return TQString::null;
return m_impl->number;
}
@@ -215,14 +215,14 @@ Bug::Status Bug::status() const
return m_impl->status;
}
-QString Bug::severityAsString() const
+TQString Bug::severityAsString() const
{
return severityToString( severity() );
}
Person Bug::developerTODO() const
{
- return (m_impl == NULL) ? Person( QString::null, QString::null ) :
+ return (m_impl == NULL) ? Person( TQString::null, TQString::null ) :
m_impl->developerTODO;
}