From b9e542d0c805e9adee3a67e44532d5321032e21e Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Thu, 24 Jan 2013 13:51:01 -0600 Subject: Rename KGlobal, KProcess, and KClipboard to avoid conflicts with KDE4 --- parts/openwith/openwithpart.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'parts/openwith/openwithpart.cpp') diff --git a/parts/openwith/openwithpart.cpp b/parts/openwith/openwithpart.cpp index c41d0ee6..85cfe9f0 100644 --- a/parts/openwith/openwithpart.cpp +++ b/parts/openwith/openwithpart.cpp @@ -52,7 +52,7 @@ void OpenWithPart::fillContextMenu(TQPopupMenu *popup, const Context *context) int id = popup->insertItem( i18n("Open As"), openAsPopup ); popup->setWhatsThis(id, i18n("Open As

Lists all encodings that can be used to open the selected file.")); - TQStringList encodings = KGlobal::charsets()->descriptiveEncodingNames(); + TQStringList encodings = TDEGlobal::charsets()->descriptiveEncodingNames(); int i = 0; TQStringList::const_iterator it = encodings.constBegin(); @@ -108,11 +108,11 @@ void OpenWithPart::openWithDialog() void OpenWithPart::openAsEncoding( int id ) { - TQStringList encodings = KGlobal::charsets()->descriptiveEncodingNames(); + TQStringList encodings = TDEGlobal::charsets()->descriptiveEncodingNames(); TQString encoding; if ( id <= encodings.count() && id >= 0 ) { - encoding = KGlobal::charsets()->encodingForName( encodings[ id ] ); + encoding = TDEGlobal::charsets()->encodingForName( encodings[ id ] ); } KURL::List::iterator it = m_urls.begin(); -- cgit v1.2.1