summaryrefslogtreecommitdiffstats
path: root/kig/kig/kig_part.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kig/kig/kig_part.cpp')
-rw-r--r--kig/kig/kig_part.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/kig/kig/kig_part.cpp b/kig/kig/kig_part.cpp
index 089865f0..497516e2 100644
--- a/kig/kig/kig_part.cpp
+++ b/kig/kig/kig_part.cpp
@@ -369,7 +369,7 @@ bool KigPart::openFile()
{
KMessageBox::sorry( widget(),
i18n( "The file \"%1\" you tried to open does not exist. "
- "Please verify that you entered the correct path." ).tqarg( m_file ),
+ "Please verify that you entered the correct path." ).arg( m_file ),
i18n( "File Not Found" ) );
return false;
};
@@ -390,7 +390,7 @@ bool KigPart::openFile()
"question would be worth implementing support for, you can "
"always ask us nicely on mailto:toscano.pino@tiscali.it "
"or do the work yourself and send me a patch."
- ).tqarg(mimeType->name()),
+ ).arg(mimeType->name()),
i18n( "Format Not Supported" )
);
return false;
@@ -466,7 +466,7 @@ void KigPart::_addObject( ObjectHolder* o )
void KigPart::delObject( ObjectHolder* o )
{
- // we delete all tqchildren and their tqchildren etc. too...
+ // we delete all children and their children etc. too...
std::vector<ObjectHolder*> os;
os.push_back( o );
delObjects( os );
@@ -619,7 +619,7 @@ bool KigPart::internalSaveAs()
{
int ret = KMessageBox::warningContinueCancel( m_widget,
i18n( "The file \"%1\" already exists. Do you wish to overwrite it?" )
- .tqarg( file_name ), i18n( "Overwrite File?" ), i18n("Overwrite") );
+ .arg( file_name ), i18n( "Overwrite File?" ), i18n("Overwrite") );
if ( ret != KMessageBox::Continue )
{
return false;