[Bug 592129] Re: ktoon crashes on start (empty window with title Fatal error)

2021-01-08 Thread Bug Watch Updater
** Changed in: kdebase-workspace
   Status: Incomplete => Invalid

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/592129

Title:
  ktoon crashes on start (empty window with title Fatal error)

To manage notifications about this bug go to:
https://bugs.launchpad.net/kdebase-workspace/+bug/592129/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 592129] Re: ktoon crashes on start (empty window with title Fatal error)

2020-12-09 Thread Bug Watch Updater
Launchpad has imported 4 comments from the remote bug at
https://bugs.kde.org/show_bug.cgi?id=256944.

If you reply to an imported comment from within Launchpad, your comment
will be sent to the remote bug automatically. Read more about
Launchpad's inter-bugtracker facilities at
https://help.launchpad.net/InterBugTracking.


On 2010-11-15T01:12:56+00:00 Eckhart Wörner wrote:

Version:   unspecified (using KDE 4.4.5) 
OS:Linux

This bug has been copied over from http://bugs.debian.org/cgi-
bin/bugreport.cgi?bug=603480



In qguiplatformplugin_kde.cpp:fileDialogSetVisible it has
if (!kdefd && visible) {

   if(qfd->options() & QFileDialog::DontUseNativeDialog)
return false;

kdefd = new 
KFileDialogBridge(KUrl::fromPath(qfd->directory().canonicalPath()),
  
qt2KdeFilter(qfd->nameFilters().join(";;")), qfd);

qfd->setProperty("_k_bridge", QVariant::fromValue(kdefd));
}

i.e. if you are making this visible and kdefd hasn't been created then create 
it now.
Most of the contents of the function are guarded by an if (visible) however on 
line 249 we have
kdefd->setVisible(visible);

and if you make the object hidden before it's ever been made visible then kdefd 
will be NULL
and it seg's on line 249.

This is the underlying cause of [Debian] bug 599303 in ktoon which is marked RC.
It makes ktoon unusable for KDE users (although it works for Gnome users!)

I suggest guarding this line with an if (kdefd)  but I don't know the
structure to know if that is all that is needed.

Reproducible: Didn't try

Reply at:
https://bugs.launchpad.net/ubuntu/+source/ktoon/+bug/592129/comments/5


On 2010-11-15T15:09:30+00:00 Cfeck wrote:

Proposed patch:

Index: qguiplatformplugin_kde.cpp
===
--- qguiplatformplugin_kde.cpp  (revision 1197348)
+++ qguiplatformplugin_kde.cpp  (working copy)
@@ -214,7 +214,7 @@
 virtual bool fileDialogSetVisible(QFileDialog *qfd, bool visible)
 {
 K_FD(qfd);
-if (!kdefd && visible) {
+if (!kdefd) {
 if(qfd->options() & QFileDialog::DontUseNativeDialog)
 return false;

Reply at:
https://bugs.launchpad.net/ubuntu/+source/ktoon/+bug/592129/comments/6


On 2010-11-21T02:30:53+00:00 Eckhart Wörner wrote:

(In reply to comment #1)
> Proposed patch:

Doesn't that make fileDialogSetVisible(false) unnecessarily expensive?
What are the reasons against the original submitter's proposal of
guarding the kdefd->setVisible(visible) call?

Reply at:
https://bugs.launchpad.net/ubuntu/+source/ktoon/+bug/592129/comments/7


On 2020-12-09T01:34:23+00:00 Justin Zobel wrote:

Thank you for the report, Eckhart.

As it has been a while since this was reported, can you please test and
confirm if this issue is still occurring or if this bug report can be
marked as resolved.

I have set the bug status to "needsinfo" pending your response, please
change back to "reported" or "resolved/worksforme" when you respond,
thank you.

Reply at:
https://bugs.launchpad.net/ubuntu/+source/ktoon/+bug/592129/comments/18


** Changed in: kdebase-workspace
   Status: Confirmed => Incomplete

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/592129

Title:
  ktoon crashes on start (empty window with title Fatal error)

To manage notifications about this bug go to:
https://bugs.launchpad.net/kdebase-workspace/+bug/592129/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 592129] Re: ktoon crashes on start (empty window with title Fatal error)

2012-12-12 Thread Harald Sitter
We do not introduce patches that were not approved and applied upstream.

** Changed in: kde-workspace (Ubuntu)
   Status: New = Won't Fix

-- 
You received this bug notification because you are a member of Kubuntu
Bugs, which is subscribed to kde-workspace in Ubuntu.
https://bugs.launchpad.net/bugs/592129

Title:
  ktoon crashes on start (empty window with title Fatal error)

To manage notifications about this bug go to:
https://bugs.launchpad.net/kdebase-workspace/+bug/592129/+subscriptions

-- 
kubuntu-bugs mailing list
kubuntu-b...@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/kubuntu-bugs


[Bug 592129] Re: ktoon crashes on start (empty window with title Fatal error)

2012-05-14 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: kde-workspace (Ubuntu)
   Status: New = Confirmed

-- 
You received this bug notification because you are a member of Kubuntu
Bugs, which is subscribed to kde-workspace in Ubuntu.
https://bugs.launchpad.net/bugs/592129

Title:
  ktoon crashes on start (empty window with title Fatal error)

To manage notifications about this bug go to:
https://bugs.launchpad.net/kdebase-workspace/+bug/592129/+subscriptions

-- 
kubuntu-bugs mailing list
kubuntu-b...@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/kubuntu-bugs


[Bug 592129] Re: ktoon crashes on start (empty window with title Fatal error)

2012-05-14 Thread Harald Sitter
** Package changed: kdebase-workspace (Ubuntu) = kde-workspace (Ubuntu)

-- 
You received this bug notification because you are a member of Kubuntu
Bugs, which is subscribed to kde-workspace in Ubuntu.
https://bugs.launchpad.net/bugs/592129

Title:
  ktoon crashes on start (empty window with title Fatal error)

To manage notifications about this bug go to:
https://bugs.launchpad.net/kdebase-workspace/+bug/592129/+subscriptions

-- 
kubuntu-bugs mailing list
kubuntu-b...@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/kubuntu-bugs


[Bug 592129] Re: ktoon crashes on start (empty window with title Fatal error)

2011-10-22 Thread klearvue
The bug re-appeared in Oneiric.

Ktoon version - 0.8.1-4.2ubuntu1
KDE version - 4:4.7.2-0ubuntu1~ppa2

Launching Ktoon gives this:

  $ ktoon 
  [Initializing DApplication]
  [Initializing DConfig]
  [Initializing DConfigDocument]
  *Init configuration file : /home/USERNAME/.ktoon/ktoon.cfg 
  ktoon is crashing with signal 11 :(

Ktoon creates configuration directory in ~/.ktoon but does NOT create
ktoon.cgf file there.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/592129

Title:
  ktoon crashes on start (empty window with title Fatal error)

To manage notifications about this bug go to:
https://bugs.launchpad.net/kdebase-workspace/+bug/592129/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 592129] Re: ktoon crashes on start (empty window with title Fatal error)

2011-10-22 Thread Daniel Hahler
It's likely that the fix has been dropped in KDE:

   [ Didier Raboud ]
   * Fix a segfault in qguiplatformplugin_kde, thanks to David Alan Gilbert
 (patch 33_qguiplatformplugin_kde_NULL_check.diff). (Closes: #603480)


** Changed in: ktoon (Ubuntu)
   Status: Fix Released = Invalid

** Also affects: kdebase-workspace (Ubuntu)
   Importance: Undecided
   Status: New

-- 
You received this bug notification because you are a member of Kubuntu
Bugs, which is subscribed to kdebase-workspace in Ubuntu.
https://bugs.launchpad.net/bugs/592129

Title:
  ktoon crashes on start (empty window with title Fatal error)

To manage notifications about this bug go to:
https://bugs.launchpad.net/kdebase-workspace/+bug/592129/+subscriptions

-- 
kubuntu-bugs mailing list
kubuntu-b...@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/kubuntu-bugs


[Bug 592129] Re: ktoon crashes on start (empty window with title Fatal error)

2011-10-22 Thread Daniel Hahler
I am opening a task for KDE.

Please verify that the fix from http://bugs.debian.org/cgi-
bin/bugreport.cgi?bug=603480 is included still in Ubuntu.

-- 
You received this bug notification because you are a member of Kubuntu
Bugs, which is subscribed to kdebase-workspace in Ubuntu.
https://bugs.launchpad.net/bugs/592129

Title:
  ktoon crashes on start (empty window with title Fatal error)

To manage notifications about this bug go to:
https://bugs.launchpad.net/kdebase-workspace/+bug/592129/+subscriptions

-- 
kubuntu-bugs mailing list
kubuntu-b...@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/kubuntu-bugs


[Bug 592129] Re: ktoon crashes on start (empty window with title Fatal error)

2011-09-19 Thread Daniel Hahler
This is fixed as of 0.8.1-4.1ubuntu2 (Ubuntu 11.04 / Natty).

** Changed in: ktoon (Ubuntu)
   Status: Triaged = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/592129

Title:
  ktoon crashes on start (empty window with title Fatal error)

To manage notifications about this bug go to:
https://bugs.launchpad.net/kdebase-workspace/+bug/592129/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 592129] Re: ktoon crashes on start (empty window with title Fatal error)

2011-08-11 Thread Bug Watch Updater
** Changed in: kdebase-workspace (Debian)
   Status: Unknown = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/592129

Title:
  ktoon crashes on start (empty window with title Fatal error)

To manage notifications about this bug go to:
https://bugs.launchpad.net/kdebase-workspace/+bug/592129/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 592129] Re: ktoon crashes on start (empty window with title Fatal error)

2011-02-27 Thread Bug Watch Updater
** Changed in: kdebase-workspace
   Importance: Unknown = High

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/592129

Title:
  ktoon crashes on start (empty window with title Fatal error)

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 592129] Re: ktoon crashes on start (empty window with title Fatal error)

2011-01-10 Thread Bug Watch Updater
** Changed in: ktoon (Debian)
   Status: Unknown = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/592129

Title:
  ktoon crashes on start (empty window with title Fatal error)

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 592129] Re: ktoon crashes on start (empty window with title Fatal error)

2011-01-10 Thread Bug Watch Updater
** Changed in: kdebase-workspace
   Status: Unknown = Confirmed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/592129

Title:
  ktoon crashes on start (empty window with title Fatal error)

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 592129] Re: ktoon crashes on start (empty window with title Fatal error)

2010-12-30 Thread Daniel Hahler
I confirm this still being the case in Maverick (version
0.8.1-4.1ubuntu1) when using an empty config dir ~/.ktoon.


** Changed in: ktoon (Ubuntu)
   Importance: Medium = High

** Changed in: ktoon (Ubuntu)
   Status: Expired = Triaged

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/592129

Title:
  ktoon crashes on start (empty window with title Fatal error)

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 592129] Re: ktoon crashes on start (empty window with title Fatal error)

2010-12-30 Thread Daniel Hahler
We should check if the current release (0.9a-git04) still has this
issue.

There's a deb available for it, but currently berlios.de (the site
hosting the downloads) appears to be down; see
http://www.ktoon.net/portal/download_counter

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/592129

Title:
  ktoon crashes on start (empty window with title Fatal error)

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 592129] Re: ktoon crashes on start (empty window with title Fatal error)

2010-12-30 Thread Daniel Hahler
The crash appears to be with KDE, see the second Debian bug I've just
linked; http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=603480

** Bug watch added: Debian Bug tracker #599303
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=599303

** Also affects: ktoon (Debian) via
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=599303
   Importance: Unknown
   Status: Unknown

** Bug watch added: Debian Bug tracker #603480
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=603480

** Also affects: kdebase-workspace (Debian) via
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=603480
   Importance: Unknown
   Status: Unknown

** Bug watch added: KDE Bug Tracking System #256944
   http://bugs.kde.org/show_bug.cgi?id=256944

** Also affects: kdebase-workspace via
   http://bugs.kde.org/show_bug.cgi?id=256944
   Importance: Unknown
   Status: Unknown

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/592129

Title:
  ktoon crashes on start (empty window with title Fatal error)

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 592129] Re: ktoon crashes on start (empty window with title Fatal error)

2010-12-28 Thread Launchpad Bug Tracker
[Expired for ktoon (Ubuntu) because there has been no activity for 60
days.]

** Changed in: ktoon (Ubuntu)
   Status: Incomplete = Expired

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/592129

Title:
  ktoon crashes on start (empty window with title Fatal error)

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 592129] Re: ktoon crashes on start (empty window with title Fatal error)

2010-10-18 Thread Tony Brown
The problem can be worked around by placing the attached config file into 
~/.ktoon/ktoon.cfg
It would seem then that KToon is not writing a valid or complete initial config 
file when it's first started.

** Attachment added: KToon config file
   
https://bugs.launchpad.net/ubuntu/+source/ktoon/+bug/592129/+attachment/1700919/+files/ktoon.cfg

-- 
ktoon crashes on start (empty window with title Fatal error)
https://bugs.launchpad.net/bugs/592129
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 592129] Re: ktoon crashes on start (empty window with title Fatal error)

2010-08-17 Thread Ute Hauth
It's the same for me :

starting ktoon lucid on terminal results in following output
...$ [Initializing DApplication]
[Initializing DConfig]
[Initializing DConfigDocument]
*Init configuration file : /home/ute/.ktoon/ktoon.cfg
ktoon(4394)/ KSycocaPrivate::openDatabase: Trying to open ksycoca from  
/var/tmp/kdecache-ute/ksycoca4
ktoon is crashing with signal 11 :(

[1]+  Exit 128ktoon
#
2.6.32-24-generic #39-Ubuntu

ProblemType: Bug
DistroRelease: Ubuntu 10.04
Package: ktoon 0.8.1-4.1 (amd64)
Uname: Linux 2.6.32-24-generic #39-Ubuntu
ProcEnviron:
 LANG=de_DE.UTF-8
 ###
I enabled /etc/default/apport but I didn't get any results in /var/crash

-- 
ktoon crashes on start (empty window with title Fatal error)
https://bugs.launchpad.net/bugs/592129
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 592129] Re: ktoon crashes on start (empty window with title Fatal error)

2010-07-28 Thread Daniel Hahler
Is there a crash file from apport that you could attach? Look in
/var/crash.

You may have to enable apport first (see /etc/default/apport IIRC).

** Changed in: ktoon (Ubuntu)
   Status: New = Incomplete

** Changed in: ktoon (Ubuntu)
   Importance: Undecided = Medium

-- 
ktoon crashes on start (empty window with title Fatal error)
https://bugs.launchpad.net/bugs/592129
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 592129] Re: ktoon crashes on start (empty window with title Fatal error)

2010-06-10 Thread Cos Costa

** Attachment added: Dependencies.txt
   http://launchpadlibrarian.net/50067988/Dependencies.txt

-- 
ktoon crashes on start (empty window with title Fatal error)
https://bugs.launchpad.net/bugs/592129
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs