From: Carsten Niehaus Date: Thu, 16 Jun 2005 09:06:04 +0000 (+0000) Subject: i18n-fixes X-Git-Tag: v3.80.2~300^2~101 X-Git-Url: https://git.rmz.fi/?a=commitdiff_plain;h=8618c0299602e996b67a5ba0159fd6b658d40dab;p=libqmvoc.git i18n-fixes svn path=/trunk/KDE/kdeedu/kalzium/src/element.cpp; revision=426042 --- diff --git a/kalzium/src/element.cpp b/kalzium/src/element.cpp index 36747bc..ee426b6 100644 --- a/kalzium/src/element.cpp +++ b/kalzium/src/element.cpp @@ -537,12 +537,10 @@ KalziumDataObject::KalziumDataObject() QFile layoutFile( url.path() ); if (!layoutFile.exists()) - { - KMessageBox::information( 0, i18n("data.xml does not exist"), i18n( "Loading File - Error" ) ); - } + kdDebug() << "data.xml not found" << endl; if (!layoutFile.open(IO_ReadOnly)) - KMessageBox::information( 0, i18n("data.xml IO-error"), i18n( "Loading File - IO_ReadOnly" ) ); + kdDebug() << "data.xml IO-error" << endl; ///Check if document is well-formed if (!doc.setContent(&layoutFile))