News:

When registered with our forums, feel free to send a "here I am" post here to differ human beings from SPAM bots.

Main Menu

The 23 October 2010 build (6752) is out.

Started by killerbot, October 23, 2010, 10:38:22 PM

Previous topic - Next topic

koso

I am sorry for my previous post ... all problems i had with this build (indent, broken cc, lags in editor) were solved with deleting default.conf

scarphin

I guess debuggers branch hasn't been mixed into this nightly, has it?

Jenna


Phenom

The "Copy strings to clipboard" plugin copies include names that are between " and " e.g:


#include "header.h"


copies "header.h".

alb_cb_moon

Quote from: eckard_klotz on October 26, 2010, 01:07:11 PM
Hello Developer-Team.

The new nightly seams to have problem to write its configuration data into the renamed data-path. If I just open C::B and close it again it crashes. WinXP SP2 tells me that there is an impossible read on the adress "0x00000001". I renamed the old data-folder in the hope it helps. But C:B creates only a new folder-system and 2 ini-files "DragScroll.ini" and "codesnippets.ini".

Best Regards,
                   Eckard Klotz.

I have the same problem... I use  WinXP Profesional  SP2
OS: Windows XP SP2
GUI Library: wxWidgets 2.8.10
IDE: CodeBlocks SVN / Nigth Builds Compiler: MinGW & gcc 3.4.5

Grom

Bug!!! When I use debugger, the call stuck doesn't show template classes methods from template class methods.  :twisted: :twisted: :twisted:

Say

template<calass type>
class A{
type a;
void Add(type b)
{
a+=b;
}};

template<calass type>
class B{
type a;
A<T> m_A;
void Mul(type b)
{
a*=b;
}

void Add(type b)
{
m_A.Add(b);
}

};

void main()
{
B<float> B;
B.Add(10.0); // <- doen't show to the class A!!!!
  return -1;
}
gcc+winXP+suse.

oBFusCATed

Have you tried the version from the debuggers branch?

If it doesn't work there, can you paste the debuggers debug log?


p.s. and please use code tags for larger pastes
(most of the time I ignore long posts)
[strangers don't send me private messages, I'll ignore them; post a topic in the forum, but first read the rules!]

fataluk1

#22
Does it happen to anyone else that when you write two nested for-s for example

for( int i = 0 ; i < N ; i++ ){
   for( int j = 0 ; j < N ; j++ ){
   
   }
}

I want it to look like above ( with the second for indented ). Sadly codeblocks drives me crazy when it aligns the second for with the first. Is that an option that I can turn off or is it just a bug.... I cannot make myself believe this is a feature!??!  Really, who'd write without indentation... Please fix it :)

OS: Kubuntu 10.10
Codeblocks SVN 6803, Build : Nov 1 2010, 10:20:47 - wx 2.8.10 - 32 bit

EDIT: WHERE ARE MY ABBREVIATIONS!?!?!?

Loaden

Quote from: fataluk1 on November 02, 2010, 06:38:24 AM
Does it happen to anyone else that when you write two nested for-s for example

for( int i = 0 ; i < N ; i++ ){
   for( int j = 0 ; j < N ; j++ ){
   
   }
}

I want it to look like above ( with the second for indented ). Sadly codeblocks drives me crazy when it aligns the second for with the first. Is that an option that I can turn off or is it just a bug.... I cannot make myself believe this is a feature!??!  Really, who'd write without indentation... Please fix it :)

OS: Kubuntu 10.10
Codeblocks SVN 6803, Build : Nov 1 2010, 10:20:47 - wx 2.8.10 - 32 bit

EDIT: WHERE ARE MY ABBREVIATIONS!?!?!?

trying to delete default.conf?

koso

I have the same problem with indent, even with new profile.

In my case, I can reproduce it with this:

1. disable brace completion (in default config)
2. write this:

for(;;) {
        for(;;)

3. press '{'

Now it unindents inner for ... and it happens only if you write code from '2' char by char <- so do not copy-paste it to test.


Loaden

Quote from: koso on November 02, 2010, 10:44:35 PM
I have the same problem with indent, even with new profile.

In my case, I can reproduce it with this:

1. disable brace completion (in default config)
2. write this:

for(;;) {
        for(;;)

3. press '{'

Now it unindents inner for ... and it happens only if you write code from '2' char by char <- so do not copy-paste it to test.


This issue should fixed in next nightly build.

tanq

I want to add some minor bugs I found.

1. Sometimes compiler settings (particulary executable paths) are not saved with "save all" command. This is happening when new workspace is used instead of "default" workspace.
--load prevously saved workspace
--edit compiler paths
--"save everything"
--exit code::blocks
--start code::blocks
--load saved workspace
-> paths may be lost

2. Similar bug:
--rename toolchain in compiler settings
--toolchain name in projects' options updates automatically
--save everything
->after restarting c::b projects references to old tollchain name which not exist
->updating toolchain name in every project manually, fixes the prolem


fataluk1

By MY I meant abbreviations as a whole... I don't have Abbreviations in Tools->Editor...

Jenna

Quote from: fataluk1 on November 03, 2010, 07:51:13 PM
By MY I meant abbreviations as a whole... I don't have Abbreviations in Tools->Editor...
Confirmed, abbreviations have moved into a plugin.
I updated automake-system, but forgot to fix the debian install files.

Currently I build the new packages.
It will take about an hour (64-bit and 32-bit), if everything else is okay.

I post here if the packages are available.

Sorry for the inconvenience.

fataluk1

Can you also please add the option "Cancel" to the close dialog( when you press X incidentally, it only asks you whether to save the layout( at least me ) )... I like the firefox behaviour ( if I press X incidentally I can press Esc and not close firefox... no way(?) to do this with code::blocks :) )