User forums > Nightly builds
The 14 November 2010 build (6846) is out.
killerbot:
Get quick announcements through the RSS feed http://www.codeblocks.org/nightly/CodeBlock_RSS.xml
Before you use a nightly make sure you understand how it works.
A link to the unicode windows wxWidget dll for Code::Blocks : http://prdownload.berlios.de/codeblocks/wxmsw28u_gcc_cb_wx2810_gcc441.7z
For those who might need this one (when no MingW installed on your system) : the mingw10m.dll : http://prdownload.berlios.de/codeblocks/mingwm10_gcc441.7z
The 14 November 2010 build is out.
- Windows :
http://prdownload.berlios.de/codeblocks/CB_20101114_rev6846_win32.7z
- Linux :
none
Resolved Fixed:
* saved status bar displays status to the configuration file
* changed status bar style from wxSB_NORMAL to wxSB_FLAT (only for Linux)
* fixed an issue with split-view: non-default indicator settings (used by highlight occurrences, IncSearch, SpellChecker) have not been used directly after splitting (see here for an example: http://forums.codeblocks.org/index.php/topic,11307.msg91996.html#msg91996)
* fixed a possible crash (on windows) or hang (on wxGTK), if a file was modified outside C::B, and the IDE regains focus with pressing the close-button on the editors tab.
* remove the "ugly" part of wxToolbar, see http://forums.codeblocks.org/index.php/topic,13665.0.html for more information
Regressions/Confirmed/Annoying/Common bugs:
Jenna:
Debian packages (binaries and sources) for 32-bit and 64-bit systems can be found in my repo.
Phenom:
Considering the code:
--- Code: ---struct GameData
{
Z_GLC::ZGLDevice *device;
Z_GLC::ZTextDrawer2 *text_drawer;
Z_GLC::ZTextureManager2 *texture_manager;
Ball_manager *ball_manager;
Paddle *paddle1, *paddle2;
};
class Game
{
public:
Game();
~Game();
Z_GLC::ZGLDevice *get_device const { return data.device; }
Ball_manager *get_ball_manager const { return data.ball_manager; }
Paddle *get_paddle1 const { return data.paddle1; }
Paddle *get_paddle2 const { return data.paddle2; }
private:
GameData data;
int num_balls;
unsigned texid[2];
};
--- End code ---
in symbol list the class member is noted:
--- Code: --- data : GameData****
--- End code ---
If I place semicolons after each closing brace it works right.
--- Code: --- Z_GLC::ZGLDevice *get_device() const { return data.device; }; //< note the semicolons here
Ball_manager *get_ball_manager const { return data.ball_manager; };
Paddle *get_paddle1 const { return data.paddle1; };
Paddle *get_paddle2 const { return data.paddle2; };
--- End code ---
EDIT: Seems I forgot some parenthesis...
bug1z:
Sorry, it will work on х64?
Folco:
The color of the "Background" and "Foreground" buttons in "Settings -> Editor -> Syntax highlighting" is always blank, even if you set an element to various colors. Before, they was colourized in the same color that the current text.
SVN 6845 for Kubuntu 10.10 64b.
Navigation
[0] Message Index
[#] Next page
Go to full version