User forums > Nightly builds

The 11 February 2012 build (7789) is out.

<< < (4/10) > >>

oBFusCATed:
SVN HEAD is as stable as it could get :)

codeur:

--- Quote from: oBFusCATed on February 27, 2012, 11:05:59 pm ---SVN HEAD is as stable as it could get :)

--- End quote ---

I trust it is very stable. I am using the current head for a new release of Codeblocks EDU-Portable (in a couple of weeks).

xawari:

--- Quote from: Alpha on February 20, 2012, 11:55:22 pm ---Selection color is not accessible in most other languages simply because no one has added that tag.

--- End quote ---
There's no such lexer as default/common, it's really a bad idea to add same setting to every language. There may be someone who wants to highlight different text in different colors, of course, but in general there should be a common base. IMHO.

zetab:
When using the "Insert -> All method without implementation" to insert the implementation of TestFunction() for this header file:
TestClass.h

--- Code: ---#ifndef TESTCLASS_H
#define TESTCLASS_H
class TestClass
{
public:
TestClass();
virtual ~TestClass();

int* TestFunction();
};
#endif // TESTCLASS_H

--- End code ---

I got following code:
TestClass.cpp

--- Code: ---#include "TestClass.h"

TestClass::TestClass(){}
TestClass::~TestClass(){}

int TestClass::TestFunction()
{
}

--- End code ---

The return type of TestFunction missed the "*".
I have tried reparsing the project, but the problem is still there.

killerbot:
many thanks for the feedback, this is indeed a serious error.
Could you please also register it at our berlios project page as a bug, otherwise it will get lost in the forum ;-)

Navigation

[0] Message Index

[#] Next page

[*] Previous page

Go to full version