https://bugs.kde.org/show_bug.cgi?id=275458





--- Comment #8 from Marko Käning <mk-lists email de>  2011-06-13 19:14:49 ---
Finally I was able to debug into KDE's libs. There I've found that the crash
gets triggered when KDE goes into QT's adjustSize() (because the window is
hidden):
---
void KXmlGuiWindow::setupGUI( const QSize & defaultSize, StandardWindowOptions
options, const QString & xmlfile ) {
.
.
.
    if (initialGeometrySet()) {
        // Do nothing...
    }
    else if (d->defaultSize.isValid()) {
        resize(d->defaultSize);
    }
    else if (isHidden()) {
>     adjustSize();
    }
---
(See '>' in first column above for execution pointer at crash.)

-- 
Configure bugmail: https://bugs.kde.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
_______________________________________________
KMyMoney-devel mailing list
KMyMoney-devel@kde.org
https://mail.kde.org/mailman/listinfo/kmymoney-devel

Reply via email to