]> Git trees. - libqmvoc.git/commitdiff
i18n-fixes
authorCarsten Niehaus <cniehaus@gmx.de>
Thu, 16 Jun 2005 09:06:04 +0000 (09:06 +0000)
committerCarsten Niehaus <cniehaus@gmx.de>
Thu, 16 Jun 2005 09:06:04 +0000 (09:06 +0000)
svn path=/trunk/KDE/kdeedu/kalzium/src/element.cpp; revision=426042

kalzium/src/element.cpp

index 36747bc46251af543af4b9fd83dd651ce4d19b11..ee426b6e345f8c907340e554c18d9e5497ae69fb 100644 (file)
@@ -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))