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).
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.
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.
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());
*** Bug 75502 has been marked as a duplicate of this bug. ***