Recent Posts

Pages: 1 2 3 4 5 [6] 7 8 9 10
51
Using Code::Blocks / Re: Hiccups while typing (continuation)
« Last post by ollydbg on February 04, 2025, 03:32:55 am »
If I remember correctly, it is a known bug for a long time. But I nearly forgot the details.

I just remember that: Each Parser instance(for each cbp projects) has there own CodeCompletion options, and when you saved the CodeCompletion options, it is only for the active Parser instance. But if you don't have any cbp file opened, there is still a special hidden Parser instance created for "dummy cbp projects".
52
Hi, when I try to build the whole C::B workspace against the "debug version of the wxWidgets", I need to change the "custom variable" named "WX_SUFFIX" from "u" to "ud".

This is simple if I only need to change this value in a single "cbp" file, but if I want to change them in all the cbps under the workspace, how to do that? I don't want to open the build option dialog for each cbp files.

Thanks.
53
Using Code::Blocks / Re: Hiccups while typing (continuation)
« Last post by Pecan on February 03, 2025, 06:44:06 pm »
Oh what's up, a bug ?
It seems that if I close C::B and I reopen it, the "Update parser when typing" setting gets enabled again ! Can you check ?
NB svn 13598

Yes, it's a bug. When CB is closed with a project active, a new setting of "Update parser..." will toggle itself.

When CB is closed with no project active, then "Update parser..." is changed,the "Update parser..." will hold.

So..., when I close all projects, change the "Update parser..." then close CB, the status of the check box will hold.

Weird !

Edit: 12:48 pm
When closing with no project open the CC parser is not involved.
When closing with a project open, the parser at 928 writes the value it was constructed with, not the updated value from the settings dialog.

cfg->Write(_T("/while_typing"), m_Options.whileTyping); //(ph 2025/02/03) wrong value when calledfrom ClassBrowser 245

Called from ClassBrowser 245: m_Parser->WriteOptions();
m_Options.whileTyping has the value before it was changed in settings dialog.

What I don't understand is why ClassBrowser has a stale value of the "Update parser..." value. In .conf it's named <WHILE_TYPING bool="0" />




54
Help / Font size adjust Project, Debug Windows
« Last post by c5ace on February 03, 2025, 01:26:29 am »
I can't find how to change the font size in the Project, Debug and some other windows. The font in Edit window is changeable. See attached screenshot.

Is there a way to set all fonts in all windows to the same size?

INFORMATION:
Name                   : Code::Blocks
Version                : svn-r13518
SDK Version            : 2.25.0
Scintilla Version      : 3.7.5
Author                 : The Code::Blocks Team
E-mail                 : info@codeblocks.org
Website                : https://www.codeblocks.org
OS                     : Linux 6.6.74-gentoo-x86_64 x86_64
Desktop environment    : XFCE
Scaling factor         : 1.000000
Detected scaling factor: 1.000000
Display PPI            : 96x96
Display count          : 1
Display 0              : XY=[0,0]; Size=[2560,1440]; Primary

wxWidgets Library (wxGTK port)
Version 3.2.5 (Unicode: wchar_t, debug level: 1),
compiled at Jan 18 2025 10:07:52

Runtime version of toolkit used is 3.24.
Compile-time GTK+ version is 3.24.42.


55
Help / Re: Issues with GDB and C::B
« Last post by nore on February 02, 2025, 11:52:32 pm »
I moved from the nightly build to a the 32-bit release (20.03) and everything is working now--only now the resolution of the application seems to be much lower... At least from the perspective of my laptop's DPI--investigation continues.

-nore
56
Using Code::Blocks / Re: Hiccups while typing (continuation)
« Last post by Elena on February 02, 2025, 11:10:50 pm »
Oh what's up, a bug ?
It seems that if I close C::B and I reopen it, the "Update parser when typing" setting gets enabled again ! Can you check ?
NB svn 13598
57
Using Code::Blocks / Re: Hiccups while typing (continuation)
« Last post by Elena on February 02, 2025, 09:01:36 pm »
Hi Pecan,  thanks for your support !
Disabling Update Parser When Typing seems to have fixed the hiccups !
Re: the other two settings suggested were already 300 ms and 3
58
Help / Re: Issues with GDB and C::B
« Last post by nore on February 02, 2025, 06:57:58 pm »
The build policy has debugging symbols enabled... I even tried using the DWARF optimizations for the compiler I am using (i686-ucrt-posix-dwarf).

Try using the -O0 (oh,zero) flag to see if optimization is a factor.

No luck--the build window looks excessively plain as the program is launched using the debugger--the call stack does not report anything yet; but GDB does not break on breakpoints placed during run-time. I read somewhere about someone having an issue with parent/child process-forking (some sort of locality-type issue where the debugger would handle one scope but not the other) and so I thought that perhaps my initial call to win32's AllocConsole() (for manual debugging and such) might be an issue but this is not the case.

EDIT: Trying to close the debugger using the red 'x' button also results in the same message as placing a run-time breakpoint: "Trying to interrupt process..." in the log window without any response.
59
Help / Re: Issues with GDB and C::B
« Last post by Pecan on February 02, 2025, 05:41:00 pm »
The build policy has debugging symbols enabled... I even tried using the DWARF optimizations for the compiler I am using (i686-ucrt-posix-dwarf).

Try using the -O0 (oh,zero) flag to see if optimization is a factor.
60
Help / Re: Issues with GDB and C::B
« Last post by nore on February 02, 2025, 05:08:16 pm »
The build policy has debugging symbols enabled... I even tried using the DWARF optimizations for the compiler I am using (i686-ucrt-posix-dwarf).
Pages: 1 2 3 4 5 [6] 7 8 9 10