User forums > Nightly builds

The 18 March 2008 build (4966) is out.

<< < (3/5) > >>

Gerome:
Hello,

The function list does not seem to work also, it's empty :(
I'm under Win XP with latest C::B installed completely + 18th of March update file.
Thanks a lot.

PsYhLo:
i found one bug i thing so

so everyone type in english alphabet but with cyrillic ones too
when i start to type some text in my native language (Bulgarian) and when i press Backspace to delete some mismatched chars and try to type again nothing happen no chars appear on screen
when i switch to eng and after that back to BG i start to type again this is kind of annoying

my editor is configed for UTF-8
svn 4966


PS
sorry for my english hope you understand my problem

MortenMacFly:

--- Quote from: Grom on March 22, 2008, 07:53:10 pm ---Would be grate to have automatic doxygen comments generation in new class plugin.

--- End quote ---
Indeed, I thought about that, too already. Would be pretty easy to realise though.

stahta01:
Change Needed to Compile under Windows without Pre-Compiled Headers (PCH).

The header compilerfactory.h needs added.

May patch adds compilerfactory.h and re-orders the headers so it uses CB_PRECOMP macro.

Tim S


--- Code: ---Index: src/plugins/compilergcc/compilerICC.cpp
===================================================================
--- src/plugins/compilergcc/compilerICC.cpp (revision 4970)
+++ src/plugins/compilergcc/compilerICC.cpp (working copy)
@@ -8,16 +8,21 @@
  */
 
 #include <sdk.h>
-#include <prep.h>
-#include "compilerICC.h"
-#include <wx/intl.h>
-#include <wx/regex.h>
+#ifndef CB_PRECOMP
+    #include <wx/intl.h>
+    #include <wx/msgdlg.h>
+    #include <wx/regex.h>
+   
+    #include <compilerfactory.h>
+    #include <logmanager.h>
+    #include <manager.h>
+#endif  // CB_PRECOMP
+
 #include <wx/config.h>
 #include <wx/fileconf.h>
-#include <wx/msgdlg.h>
-#include "manager.h"
-#include "logmanager.h"
 
+#include "compilerICC.h"
+
 CompilerICC::CompilerICC()
     : Compiler(_("Intel C/C++ Compiler"), _T("icc"))
 {

--- End code ---

killerbot:
applied

Navigation

[0] Message Index

[#] Next page

[*] Previous page

Go to full version