Bug 92913 - Debugger floating toolbar appeared when it wasn't supposed to
Summary: Debugger floating toolbar appeared when it wasn't supposed to
Status: RESOLVED FIXED
Alias: None
Product: kdevelop
Classification: Applications
Component: CPP Debugger (show other bugs)
Version: unspecified
Platform: Gentoo Packages Linux
: NOR normal
Target Milestone: ---
Assignee: kdevelop-bugs-null
URL:
Keywords:
: 75502 (view as bug list)
Depends on:
Blocks:
 
Reported: 2004-11-08 14:58 UTC by Adam
Modified: 2004-12-16 01:26 UTC (History)
1 user (show)

See Also:
Latest Commit:
Version Fixed In:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Adam 2004-11-08 14:58:08 UTC
Version:           3.1.0 (using KDE KDE 3.3.0)
Installed from:    Gentoo Packages
Compiler:          gcc (GCC) 3.3.4 20040623 (Gentoo Linux 3.3.4-r1, ssp-3.3.2-2, pie-8.7.6) 
OS:                Linux

See:
http://forums.gentoo.org/viewtopic.php?p=1739674
(at least the first 3 posts).
Comment 1 Matt Rogers 2004-12-14 22:52:04 UTC
this is not a bug. where are the descriptions of the symptoms? where are the instructions to reproduce? posting a link to a forum where it discusses the possibility of a bug is not a bug report. You could have at least copied the relevant parts of the forum postings. Next time, please put a little bit of effort into your bug reports. 
Comment 2 Adam 2004-12-15 03:15:57 UTC
If it's a choice between no bug report or a bug report that links to a forum, which would you prefer?  Sometimes people have time for a quick note but not a full bug report.  If it were my program I'd want to know any information that gives a clue toward the possibility that my program has a bug.

But since I have more time now, here's what I observed:
1. Go to Project -> Project Options -> Debugger
2. Observe that the checkbox "Enable Floating Toolbar" isn't checked
3. Exit the options dialog
4. Start the debugger.  Observe that the Floating Toolbar appears, though it shouldn't
5. Exit the debugger
6. Go back to the options dialog and check the checkbox, click OK, go back again and uncheck it, click OK
7. Start the debugger.  The Floating Toolbar is gone, as it should be

I don't know how the project got into that state, but that's what happened.  I'm using a custom makefile with this project, and it may have also happened in a project where I imported a QT project file, but I forget whether that second case happened.

If it were up to me, I'd fix the bug by just removing that floating toolbar, but it's probably there because someone likes so whatever.
Comment 3 Alexander Dymo 2004-12-15 18:38:38 UTC
CVS commit by dymo: 

Do not use floating toolbar by default.
BUG: 92913


  M +1 -1      debuggerpart.cpp   1.103


--- kdevelop/languages/cpp/debugger/debuggerpart.cpp  #1.102:1.103
@@ -637,5 +637,5 @@ bool DebuggerPart::startDebugger()
     gdbOutputWidget->setEnabled(true);
 
-    if (DomUtil::readBoolEntry(*projectDom(), "/kdevdebugger/general/floatingtoolbar", true))
+    if (DomUtil::readBoolEntry(*projectDom(), "/kdevdebugger/general/floatingtoolbar", false))
     {
         floatingToolBar = new DbgToolBar(this, mainWindow()->main());


Comment 4 Matt Rogers 2004-12-16 01:26:39 UTC
*** Bug 75502 has been marked as a duplicate of this bug. ***