From f8069e2ea048f2657cc417d83820576ec55c181b Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Fri, 25 Jan 2013 00:37:49 -0600 Subject: Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4 --- kbugbuster/backend/bugcommand.cpp | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'kbugbuster/backend/bugcommand.cpp') diff --git a/kbugbuster/backend/bugcommand.cpp b/kbugbuster/backend/bugcommand.cpp index 25e08184..f8b55ac9 100644 --- a/kbugbuster/backend/bugcommand.cpp +++ b/kbugbuster/backend/bugcommand.cpp @@ -14,7 +14,7 @@ TQString BugCommand::details() return TQString(); } -BugCommand *BugCommand::load( KConfig *config, const TQString &type ) +BugCommand *BugCommand::load( TDEConfig *config, const TQString &type ) { TQString bugNumber = config->group(); // ### this sucks. we better let Bug implement proper persistance, @@ -90,7 +90,7 @@ TQString BugCommandClose::details() const return m_message; } -void BugCommandClose::save( KConfig *config ) +void BugCommandClose::save( TDEConfig *config ) { config->writeEntry( "Close",m_message ); } @@ -107,7 +107,7 @@ TQString BugCommandCloseSilently::name() return i18n("Close Silently"); } -void BugCommandCloseSilently::save( KConfig *config ) +void BugCommandCloseSilently::save( TDEConfig *config ) { config->writeEntry( "CloseSilently", true ); } @@ -124,7 +124,7 @@ TQString BugCommandReopen::name() return i18n("Reopen"); } -void BugCommandReopen::save( KConfig *config ) +void BugCommandReopen::save( TDEConfig *config ) { config->writeEntry( "Reopen", true ); } @@ -146,7 +146,7 @@ TQString BugCommandRetitle::details() const return m_title; } -void BugCommandRetitle::save( KConfig *config ) +void BugCommandRetitle::save( TDEConfig *config ) { config->writeEntry( "Retitle", m_title ); } @@ -168,7 +168,7 @@ TQString BugCommandMerge::details() const return m_bugNumbers.join(", "); } -void BugCommandMerge::save( KConfig *config ) +void BugCommandMerge::save( TDEConfig *config ) { config->writeEntry( "Merge", m_bugNumbers ); } @@ -185,7 +185,7 @@ TQString BugCommandUnmerge::name() return i18n("Unmerge"); } -void BugCommandUnmerge::save( KConfig *config ) +void BugCommandUnmerge::save( TDEConfig *config ) { config->writeEntry( "Unmerge", true ); } @@ -234,7 +234,7 @@ TQString BugCommandReply::details() const return m_message; } -void BugCommandReply::save( KConfig *config ) +void BugCommandReply::save( TDEConfig *config ) { config->writeEntry( "Reply", m_message ); #if 0 @@ -264,7 +264,7 @@ TQString BugCommandReplyPrivate::details() const return m_message; } -void BugCommandReplyPrivate::save( KConfig *config ) +void BugCommandReplyPrivate::save( TDEConfig *config ) { TQStringList args; args << m_address; @@ -289,7 +289,7 @@ TQString BugCommandSeverity::details() const return m_severity; } -void BugCommandSeverity::save( KConfig *config ) +void BugCommandSeverity::save( TDEConfig *config ) { config->writeEntry( "Severity", m_severity ); } @@ -311,7 +311,7 @@ TQString BugCommandReassign::details() const return m_package; } -void BugCommandReassign::save( KConfig *config ) +void BugCommandReassign::save( TDEConfig *config ) { config->writeEntry( "Reassign", m_package ); } -- cgit v1.2.1