From 8618c0299602e996b67a5ba0159fd6b658d40dab Mon Sep 17 00:00:00 2001 From: Carsten Niehaus Date: Thu, 16 Jun 2005 09:06:04 +0000 Subject: [PATCH] i18n-fixes svn path=/trunk/KDE/kdeedu/kalzium/src/element.cpp; revision=426042 --- kalzium/src/element.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) 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)) -- 2.47.3