| Summary: | immediate crash after splash screen error log generated | ||
|---|---|---|---|
| Product: | [Applications] krita | Reporter: | Don Ziesig <donald> |
| Component: | General | Assignee: | Krita Bugs <krita-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | crash | CC: | gnomino |
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Compiled Sources | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Don Ziesig
2007-06-03 02:48:10 UTC
This is a bug in some styles, for instance the CDE or Motif style. SVN commit 678877 by rempt:
BUG:146306
Fix crash in squeezedcombobox when motif or cde style is selected. Not relevant for trunk,
because there we'll stop using squeezedcombobox Real Soon Now.
M +3 -0 squeezedcombobox.cpp
--- branches/koffice/1.6/koffice/krita/ui/squeezedcombobox.cpp #678876:678877
@@ -62,6 +62,9 @@
{
setMinimumWidth(100);
m_timer = new QTimer(this);
+
+ if (!listBox()) return;
+
m_tooltip = new SqueezedComboBoxTip( listBox()->viewport(), this );
connect(m_timer, SIGNAL(timeout()),
*** Bug 140813 has been marked as a duplicate of this bug. *** |