Developer forums (C::B DEVELOPMENT STRICTLY!) > Development

Splitting debugger in two - specific debugger and common GUI

<< < (48/136) > >>

MortenMacFly:
BTW: Did you already try the new official 7.2 debugger from MinGW?!

http://sourceforge.net/projects/mingw/files/MinGW/BaseSystem/GDB/GDB-7.2/gdb-7.2-1-mingw32-bin.tar.lzma/download

oBFusCATed:
No, it is not available in gentoo, for some reason :(

oBFusCATed:
Next patch: http://smrt.is-a-geek.org/codeblocks/patches/dbg/dbg_refactor0016.5.patch

1. Fixed some bugs related to the auto switch mode
1.1. Switch to the valid frame even when the backtrace windows is closed
1.2. If we're doing to update the backtrace, don't sync the editor. This prevents a popup to show when it is not needed.
2. Autosize the File column in the backtrace window

Morten, please merge trunk to debuggers branch, so I can test the fix for the loggers...

oBFusCATed:
Morten: can you revert the change in MainFrame::ScanForPlugins() in r5795?
I've accidentally removed the code that searches for plugins in the user's directory, bad me, bad :(

The change should be something like this:

--- Code: ---Index: src/src/main.cpp
===================================================================
--- src/src/main.cpp    (revision 6571)
+++ src/src/main.cpp    (working copy)
@@ -1010,11 +1010,16 @@
 
     PluginManager* m_PluginManager = Manager::Get()->GetPluginManager();
 
-    // global paths
-    wxString path = ConfigManager::GetPluginsFolder(true);
+    // user paths first
+    wxString path = ConfigManager::GetPluginsFolder(false);
     Manager::Get()->GetLogManager()->Log(_("Scanning for plugins in ") + path);
     int count = m_PluginManager->ScanForPlugins(path);
 
+    // global paths
+    path = ConfigManager::GetPluginsFolder(true);
+    Manager::Get()->GetLogManager()->Log(_("Scanning for plugins in ") + path);
+    count += m_PluginManager->ScanForPlugins(path);
+
     // actually load plugins
     if (count > 0)
     {

--- End code ---

MortenMacFly:

--- Quote from: oBFusCATed on September 12, 2010, 01:16:33 am ---Morten: can you revert the change in MainFrame::ScanForPlugins() in r5795?

--- End quote ---
Done.

BTW: In fact I was always curious about that change and never applied it in my local copy. But I forgot to discuss this with you. Glad it's solved now. :-)

Navigation

[0] Message Index

[#] Next page

[*] Previous page

Go to full version