Mathias wrote:
> Since Jambi doesn't come with its own .qm files I am trying to use the
> ones that come with the "standard" C++ opensource distribution.
> However, they consistently crash my app with various
> EXCEPTION_ACCESS_VIOLATION in QtCore4.dll.
Hi, Mathias.
I tried this, and am unable to reproduce your crash with the following code:
--
import com.trolltech.qt.core.*;
import com.trolltech.qt.gui.*;
public class Translation {
public static void main(String args[]) {
QApplication.initialize(args);
QTranslator translator = new QTranslator();
translator.load("qt_de.qm");
QApplication.installTranslator(translator);
QApplication.aboutQt();
}
}
--
Does this code crash for you? If not, what are you doing differently?
-- Eskil
_______________________________________________
Qt-jambi-interest mailing list
[email protected]
http://lists.trolltech.com/mailman/listinfo/qt-jambi-interest