User forums > Nightly builds

The 22 May 2010 build (6271) is out.

<< < (6/8) > >>

oBFusCATed:

--- Quote from: critic on June 11, 2010, 05:59:42 am ---`Find` dialog uses case sensitive search when `Match case` option is disabled.

--- End quote ---
This is not true for the latest debugger's branch....

Can you provide a test file + steps to reproduce?

Jenna:

--- Quote from: oBFusCATed on June 11, 2010, 07:17:19 pm ---
--- Quote from: critic on June 11, 2010, 05:59:42 am ---`Find` dialog uses case sensitive search when `Match case` option is disabled.

--- End quote ---
This is not true for the latest debugger's branch....

--- End quote ---
It's also not true for actual release 10.05 (on linux and on vista).

wavelet:
good word :D

critic:
Hello. I have some problems with environment variables (further will be EV) in the IDE.

I found the following:

* after compilation EV PATH consists of path to mingw and system's EV PATH. But the IDE's EV PATH was not used.

* while running application (executable that was built) environment variable PATH consists of IDE's EV PATH and of paths to linked libraries (though, dll or so files can be at another location).

* after EV configuration (Set Now was pressed anddialog was closed) EV PATH consists of IDE's EV only.

* open - close multiple times environment config dialog - EV PATH becomes larger - it contains now multiple instances of the same paths

I think IDE's EV must be used always if project configured this way.

I checked this behaviour with external tools (except of case with running of executable).
In EV configuration form can be checkbox `Append system variables`.

After IDE restart - EV PATH consists of IDE's EV only (and for external tools and for executable).

By the way - I perform test with `Select EV set to be applied:` checkbox checked and unchecked - it doesn't change anything - it seems like this checkbox does nothing.

stahta01:
Patch Needed for NON Pre-compiled Header Build
I added <wx/ffile.h> and <algorithm> outside of guards because they are not in wx or CB list of headers to be pre-compiled.
They are include by accident not by design of pre-compiled headers.

This will likely fix [ Bug #17321 ] Cscope plugin fails to build
http://developer.berlios.de/bugs/?func=detailbug&bug_id=17321&group_id=5358

Tim S.


--- Code: ---Index: src/plugins/contrib/DoxyBlocks/DoxyBlocks.cpp
===================================================================
--- src/plugins/contrib/DoxyBlocks/DoxyBlocks.cpp (revision 6379)
+++ src/plugins/contrib/DoxyBlocks/DoxyBlocks.cpp (working copy)
@@ -25,12 +25,15 @@
 #include "DoxyBlocks.h"
 
 #ifndef CB_PRECOMP
+ #include <wx/process.h>
  #include <wx/xrc/xmlres.h>
  #include <configmanager.h>
  #include <editormanager.h>
  #include <cbeditor.h>
  #include <logmanager.h>
  #include <projectmanager.h>
+ #include <cbproject.h>
+ #include <macrosmanager.h>
 #endif
 #include "projectloader_hooks.h"
 #include <cbstyledtextctrl.h>
Index: src/plugins/contrib/DoxyBlocks/ExtractDocs.cpp
===================================================================
--- src/plugins/contrib/DoxyBlocks/ExtractDocs.cpp (revision 6379)
+++ src/plugins/contrib/DoxyBlocks/ExtractDocs.cpp (working copy)
@@ -38,7 +38,9 @@
     #include "projectfile.h"
     #include "cbproject.h"
     #include "projectmanager.h"
+    #include "macrosmanager.h"
 #endif
+#include <wx/ffile.h>
 #include <wx/utils.h>
 #include <wx/busyinfo.h>
 #include "DoxyBlocks.h"
Index: src/plugins/contrib/Cscope/CscopePlugin.cpp
===================================================================
--- src/plugins/contrib/Cscope/CscopePlugin.cpp (revision 6379)
+++ src/plugins/contrib/Cscope/CscopePlugin.cpp (working copy)
@@ -1,4 +1,14 @@
 #include <sdk.h> // Code::Blocks SDK
+#ifndef CB_PRECOMP
+    #include <wx/process.h>
+
+    #include "cbeditor.h"
+    #include "cbproject.h"
+    #include "editormanager.h"
+    #include "logmanager.h"
+    #include "projectmanager.h"
+#endif
+
 #include <configurationpanel.h>
 #include <cbstyledtextctrl.h>
 #include "CscopePlugin.h"
Index: src/plugins/contrib/NassiShneiderman/NassiPlugin.cpp
===================================================================
--- src/plugins/contrib/NassiShneiderman/NassiPlugin.cpp (revision 6379)
+++ src/plugins/contrib/NassiShneiderman/NassiPlugin.cpp (working copy)
@@ -3,6 +3,9 @@
 
 
 #include <sdk.h> // Code::Blocks SDK
+#ifndef CB_PRECOMP
+    #include <cbeditor.h>
+#endif
 #include <configurationpanel.h>
 #include <cbstyledtextctrl.h>
 #include "NassiPlugin.h"
Index: src/plugins/contrib/EditorTweaks/EditorTweaks.cpp
===================================================================
--- src/plugins/contrib/EditorTweaks/EditorTweaks.cpp (revision 6379)
+++ src/plugins/contrib/EditorTweaks/EditorTweaks.cpp (working copy)
@@ -1,4 +1,5 @@
 #include <sdk.h> // Code::Blocks SDK
+#include <algorithm> // std::sort
 #include <configurationpanel.h>
 #include "EditorTweaks.h"
 

--- End code ---

Navigation

[0] Message Index

[#] Next page

[*] Previous page

Go to full version