User forums > Nightly builds

The 06 July 2014 build (9844) is out.

<< < (2/4) > >>

damorin:

--- Quote from: oBFusCATed on July 09, 2014, 09:07:18 pm ---damorin: Do you use the codesnippets plugin? Can you reproduce the crash more than once?

--- End quote ---
Hi,

Nope and it occurred only once only a few hours after I installed it.


White-Tiger:
well... got an issue with code completion closing a sec after opening... this exists in all versions of Code::Blocks IIRC...
Basically you write somethings that can be auto completed. such as "unsigned" (auto completion might drop in after "uns") this will open the typical code completion popup but it will also close within' 1 second if your mouse hovers any type of identifier.. because it opens that definition after 1 second.

This happens because with every character you write, the definition popup triggers... Normally it wouldn't trigger when you press CTRL-SPACE to open code completion... or pressing ENTF
So I guess you'll have to remove that from the definition popup.. or handle the case that code completion is open.

White-Tiger:
Code completion parsing bug:
following code got missing functions in struct dafuq_t:
--- Code: ---#define DLL_CALLCONV_ __stdcall
typedef struct{char b;char g;char r;char a;} RGBQUAD_;
typedef struct{
BYTE *(DLL_CALLCONV_ *FI_GetBits)(void *dib);
BYTE *(DLL_CALLCONV_ *FI_GetScanLine)(void *dib, int scanline);
BOOL (DLL_CALLCONV_ *FI_GetPixelIndex)(void *dib, unsigned x, unsigned y, BYTE *value);
BOOL (DLL_CALLCONV_ *FI_GetPixelColor)(void *dib, unsigned x, unsigned y, RGBQUAD_ *value);
BOOL (DLL_CALLCONV_ *FI_SetPixelIndex)(void *dib, unsigned x, unsigned y, BYTE *value);
BOOL (DLL_CALLCONV_ *FI_SetPixelColor)(void *dib, unsigned x, unsigned y, RGBQUAD_ *value);
unsigned (DLL_CALLCONV_ *FI_GetDIBSize)(void *dib);
RGBQUAD_ *(DLL_CALLCONV_ *FI_GetPalette)(void *dib);
} dafuq_t;
dafuq_t* dafuq;

--- End code ---
FI_GetBits, FI_GetScanLine and FI_GetPalette aren't detected because their return value is a pointer.
Also it doesn't seem like "dafuq" is correctly resolved.. "dafuq->" doesn't popup a member list. (and in case I understood cctest correctly, it also doesn't list its members)

I've run into problems relating function pointers a few times already... but I'm not sure if they were all related to pointer return values like here

BrianSidebotham:
Hey guys,

I'm having trouble with "Project->Properties->Debugger->Additional shell commands->Before connection"

Nothing gets executed from here, instead I have to use "Project->Build Options->Post-build steps" which works fine.

I need these steps for copying the executable to a target machine and launching a remote gdbserver.

Best Regards, Brian.

BrianSidebotham:
Also it appears that breakpoints don't get removed when using remote debugging. I tried just removing them from the scintilla gutter and also using "Remove All" from the breakpoints window, but nothing clears the breakpoints.

Typing delete in the gdb command window works fine however. Thanks so much for thinking of these sorts of things - CodeBlocks is such an excellent IDE!

Navigation

[0] Message Index

[#] Next page

[*] Previous page

Go to full version