User forums > Nightly builds
The 26 November 2008 build (5322) is out.
Jenna:
--- Quote from: koala01 on November 30, 2008, 12:46:14 pm ---Hi,
I don't know if i'm at the good place, but, it seems that last NB witch "class wizard" plugin works is rev 5274 one (from 2008 october 18th)
Have i to report a bug for that :?:
--- End quote ---
Did you read this (r5297)
--- Quote from: killerbot on November 08, 2008, 02:42:57 pm ---
* Moved class wizard menu item to "File->New->Class
--- End quote ---
Loaden:
When i added a search path, it's changed to:
[attachment deleted by admin]
MortenMacFly:
--- Quote from: Loaden on November 30, 2008, 03:13:16 pm ---When i added a search path, it's changed to:
--- End quote ---
It's as big as it should be that you can read the target's names... so... what?!
stahta01:
Patch needed to compile against wxWidgets 2.8 with 2.4 compatible mode on. Tim S
See thread http://forums.codeblocks.org/index.php/topic,9444.msg68171/topicseen.html#msg68171
--- Code: ---Index: src/tools/cb_share_config/mainframe.cpp
===================================================================
--- src/tools/cb_share_config/mainframe.cpp (revision 5332)
+++ src/tools/cb_share_config/mainframe.cpp (working copy)
@@ -434,9 +434,6 @@
wxT("Code::Blocks configuration files (*.conf)|*.conf|"
"All files (*.*)|*.*"), // wildcards
wxFD_OPEN | wxFD_FILE_MUST_EXIST // flags
-#if (WXWIN_COMPATIBILITY_2_4)
- | wxFD_HIDE_READONLY
-#endif
);
return filename;
--- End code ---
stahta01:
--- Quote from: killerbot on November 27, 2008, 06:26:06 pm ---
Regressions/Confirmed/Annoying/Common bugs:
* toolbar-images-not-changing-state (is a wx problem/Win XP problem)
--- End quote ---
This bug seems to be fixed in the 2.8 Branch SVN number 57223
Note: This 2.8 Branch revealed an issue in Code::Blocks
The line "wxFile f(name, wxFile::write);" is not checked afterwards for a valid value of "f". I added code below as a temp work around, but it is not well written code; an better coder needs to fix this bug.
--- Code: ---Index: src/sdk/filemanager.cpp
===================================================================
--- src/sdk/filemanager.cpp (revision 5333)
+++ src/sdk/filemanager.cpp (working copy)
@@ -336,7 +336,7 @@
}
wxFile f(name, wxFile::write);
- if ( !f.IsOpened() )
+ if ( !f.Access(name, wxFile::write) || !f.IsOpened() )
{
return false;
}
--- End code ---
Tim S
Navigation
[0] Message Index
[#] Next page
[*] Previous page
Go to full version