Author Topic: Problems with FilesGroupsAndMasks::Save  (Read 28626 times)

Offline thomas

  • Administrator
  • Lives here!
  • *****
  • Posts: 3979
Re: Problems with FilesGroupsAndMasks::Save
« Reply #15 on: December 27, 2005, 03:40:27 pm »
I have just run a global search on "<<" and wrapped all occurrences of int in combination with wxString::operator<< into Format() by hand (including typedefed variables and dates). Hopefully, I did not miss any (did not touch wxScintilla, that's a SEP).

This should fix most Unicode problems... check out revision 1600.
"We should forget about small efficiencies, say about 97% of the time: Premature quotation is the root of public humiliation."

Offline 280Z28

  • Regular
  • ***
  • Posts: 397
  • *insert unicode here*
Re: Problems with FilesGroupsAndMasks::Save
« Reply #16 on: December 27, 2005, 06:44:20 pm »

:) Looking good

There are more at:

breakpointsdlg.cpp:49
cbproject.cpp:203
cbproject.cpp:207

That's all I've seen :)
78 280Z, "a few bolt-ons" - 12.71@109.04
99 Trans Am, "Daily Driver" - 525rwhp/475rwtq
 Check out The Sam Zone :cool:

Offline thomas

  • Administrator
  • Lives here!
  • *****
  • Posts: 3979
Re: Problems with FilesGroupsAndMasks::Save
« Reply #17 on: December 27, 2005, 07:22:47 pm »
Thanks, I missed those. Fixed now.
"We should forget about small efficiencies, say about 97% of the time: Premature quotation is the root of public humiliation."

Offline tiwag

  • Developer
  • Lives here!
  • *****
  • Posts: 1196
  • sailing away ...
    • tiwag.cb
Re: Problems with FilesGroupsAndMasks::Save
« Reply #18 on: December 27, 2005, 08:29:40 pm »
i'll test it with my linux build - i hope the debugger works then ...  8)

Offline tiwag

  • Developer
  • Lives here!
  • *****
  • Posts: 1196
  • sailing away ...
    • tiwag.cb
Re: Problems with FilesGroupsAndMasks::Save
« Reply #19 on: December 27, 2005, 09:02:33 pm »
@thomas
grrrrrrrrrr  wxpropertygrid .....  Behold the wrath of Makefile.am  :(  :x :x

Offline thomas

  • Administrator
  • Lives here!
  • *****
  • Posts: 3979
Re: Problems with FilesGroupsAndMasks::Save
« Reply #20 on: December 27, 2005, 09:30:48 pm »
@thomas
grrrrrrrrrr  wxpropertygrid .....  Behold the wrath of Makefile.am  :(  :x :x
Does that mean Linux build is broken?
"We should forget about small efficiencies, say about 97% of the time: Premature quotation is the root of public humiliation."

Offline tiwag

  • Developer
  • Lives here!
  • *****
  • Posts: 1196
  • sailing away ...
    • tiwag.cb
Re: Problems with FilesGroupsAndMasks::Save
« Reply #21 on: December 27, 2005, 09:49:19 pm »
@thomas
grrrrrrrrrr  wxpropertygrid .....  Behold the wrath of Makefile.am  :(  :x :x
Does that mean Linux build is broken?
yes  :(

with a commandline-svn-orgy i sailed round wxpropertygrid r.1603 but updated all others until r.1605
then i could build it again -  good news : breakpoints are working again !!!   :D

Offline thomas

  • Administrator
  • Lives here!
  • *****
  • Posts: 3979
Re: Problems with FilesGroupsAndMasks::Save
« Reply #22 on: December 27, 2005, 09:52:57 pm »
Darn... any idea what's wrong?

Was actually hoping I had done it correctly... makefiles are the devil...
I timed that commit with Yiannis too, so he would be online and in case Linux broke, he could fix it, but apparently he is busy just now  :lol:
« Last Edit: December 27, 2005, 09:56:25 pm by thomas »
"We should forget about small efficiencies, say about 97% of the time: Premature quotation is the root of public humiliation."

Offline tiwag

  • Developer
  • Lives here!
  • *****
  • Posts: 1196
  • sailing away ...
    • tiwag.cb
Re: Problems with FilesGroupsAndMasks::Save
« Reply #23 on: December 27, 2005, 09:59:32 pm »
Darn... any idea what's wrong?

sorry not exactly - the error message regards analogously to "don't know how to make -all"
if it's really necessary i can update and provoke the make-error again if it is of help to you  -  should i ?

Offline thomas

  • Administrator
  • Lives here!
  • *****
  • Posts: 3979
Re: Problems with FilesGroupsAndMasks::Save
« Reply #24 on: December 27, 2005, 10:03:48 pm »
if it's really necessary i can update and provoke the make-error again if it is of help to you  -  should i ?
Lol, yes, I am the god of makefiles... :lol:

Post it anyway please... I'll try to figure it, and if that fails (which is likely), maybe someone who really has a clue comes up with solution... probably a missing backslash...  :?
"We should forget about small efficiencies, say about 97% of the time: Premature quotation is the root of public humiliation."

Offline tiwag

  • Developer
  • Lives here!
  • *****
  • Posts: 1196
  • sailing away ...
    • tiwag.cb
Re: Problems with FilesGroupsAndMasks::Save
« Reply #25 on: December 27, 2005, 10:05:57 pm »
ok - wait a minute or two ... :lol:

Offline Der Meister

  • Regular
  • ***
  • Posts: 307
Re: Problems with FilesGroupsAndMasks::Save
« Reply #26 on: December 27, 2005, 10:28:26 pm »
You forgot to update 'configure.in'. This patch solves this problem:
Code
Index: configure.in
===================================================================
--- configure.in        (revision 1605)
+++ configure.in        (working copy)
@@ -109,6 +109,7 @@
        src/sdk/as/Makefile
        src/sdk/tinyxml/Makefile
        src/sdk/wxscintilla/Makefile
+       src/sdk/propgrid/Makefile
        src/sdk/resources/Makefile
        src/sdk/resources/lexers/Makefile
        src/src/wxDockit/Makefile
After that a complete rebuild is necessary, that means: bootstrap, configure, make, make install.
Real Programmers don't comment their code. If it was hard to write, it should be hard to understand.
Real Programmers don't write in BASIC. Actually, no programmers write in BASIC, after the age of 12.

Offline thomas

  • Administrator
  • Lives here!
  • *****
  • Posts: 3979
Re: Problems with FilesGroupsAndMasks::Save
« Reply #27 on: December 27, 2005, 10:31:48 pm »
Thanks, did that :)
"We should forget about small efficiencies, say about 97% of the time: Premature quotation is the root of public humiliation."

Offline tiwag

  • Developer
  • Lives here!
  • *****
  • Posts: 1196
  • sailing away ...
    • tiwag.cb
Re: Problems with FilesGroupsAndMasks::Save
« Reply #28 on: December 27, 2005, 10:44:52 pm »
You forgot to update 'configure.in'. This patch solves this problem:
Code
Index: configure.in
===================================================================
--- configure.in        (revision 1605)
+++ configure.in        (working copy)
@@ -109,6 +109,7 @@
        src/sdk/as/Makefile
        src/sdk/tinyxml/Makefile
        src/sdk/wxscintilla/Makefile
+       src/sdk/propgrid/Makefile
        src/sdk/resources/Makefile
        src/sdk/resources/lexers/Makefile
        src/src/wxDockit/Makefile
After that a complete rebuild is necessary, that means: bootstrap, configure, make, make install.

thanks you, it works as you said !!!

grv575

  • Guest
Re: Problems with FilesGroupsAndMasks::Save
« Reply #29 on: December 27, 2005, 10:50:23 pm »
Isolated it.  It worked for me on linux so I tried on windows again.  It's a precompiled headers bug/issue.

Download & test the following cb projects:

The first does not use precompiled headers.
The second does.

You may want to run these in mys (although not necessary) to get the stdout output.


[attachment deleted by admin]