diff options
author | Darrell Anderson <humanreadable@yahoo.com> | 2012-06-03 22:05:46 -0500 |
---|---|---|
committer | Darrell Anderson <humanreadable@yahoo.com> | 2012-06-03 22:05:46 -0500 |
commit | 1987e947128f9fed98dad44a4f336db8081311de (patch) | |
tree | f1216e09b912e791912cec2b8677d44bee41cf79 /kdesktop/init.cc | |
parent | 4c17a41f90e65ef6860a23613c760956066f50c1 (diff) | |
download | tdebase-1987e947128f9fed98dad44a4f336db8081311de.tar.gz tdebase-1987e947128f9fed98dad44a4f336db8081311de.zip |
Branding cleanup: KDE -> TDE
Diffstat (limited to 'kdesktop/init.cc')
-rw-r--r-- | kdesktop/init.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kdesktop/init.cc b/kdesktop/init.cc index 884531b94..81bce942c 100644 --- a/kdesktop/init.cc +++ b/kdesktop/init.cc @@ -65,7 +65,7 @@ static bool testDir( const TQString &_name ) bool ok = ::mkdir( path, S_IRWXU ) == 0; if ( !ok && errno == EEXIST ) { - int ret = KMessageBox::warningYesNo( 0, i18n("%1 is a file, but KDE needs it to be a directory; move it to %2.orig and create directory?").arg(m).arg(m), TQString::null, i18n("Move It"), i18n("Do Not Move") ); + int ret = KMessageBox::warningYesNo( 0, i18n("%1 is a file, but TDE needs it to be a directory; move it to %2.orig and create directory?").arg(m).arg(m), TQString::null, i18n("Move It"), i18n("Do Not Move") ); if ( ret == KMessageBox::Yes ) { if ( ::rename( path, path + ".orig" ) == 0 ) { ok = ::mkdir( path, S_IRWXU ) == 0; |