User forums > Nightly builds

The 26 November 2008 build (5322) is out.

<< < (6/10) > >>

dje:
H!

Each time I try to disale the ToDo plugin, I have a crash.
Does anyone confirm this ?
Windows XP SP2, SVN5322

Dje

Wavesonics:
Has anyone noticed this bug:

When using the symbol browser for a project, it seems like the entire program loses focus, and I have to switch to some other running program and then back to C::B for it to become interactive again.

It might not *just* be when using the symbol browser, but thats when I've noticed it so far.

Also, another small one, when using the symbol browser, when you click on a symbol to jump to it, it jumps to it just fine, but it scrolls the symbol browsers all the way to the bottom, kinda annoying.

ollydbg:

--- Quote from: Wavesonics on December 15, 2008, 04:51:17 pm ---Has anyone noticed this bug:

When using the symbol browser for a project, it seems like the entire program loses focus, and I have to switch to some other running program and then back to C::B for it to become interactive again.

It might not *just* be when using the symbol browser, but thats when I've noticed it so far.

Also, another small one, when using the symbol browser, when you click on a symbol to jump to it, it jumps to it just fine, but it scrolls the symbol browsers all the way to the bottom, kinda annoying.

--- End quote ---
I haven't got the problem you stated. I'm using this nightly build and Windows XP.

Loaden:

--- Quote ---||note: obsolete option -I- used, please use -iquote instead|
--- End quote ---
This is a BUG? all info in the pictures.
svn build rev 5338 (2008-12-17T06:04:25.033374Z) gcc 4.3.2 Windows/unicode
OS: Windows SP3.



[attachment deleted by admin]

MortenMacFly:

--- Quote from: stahta01 on December 10, 2008, 08:25:05 am ---
--- Code: ---Index: src/sdk/filemanager.cpp
===================================================================
--- src/sdk/filemanager.cpp (revision 5333)
+++ src/sdk/filemanager.cpp (working copy)
@@ -336,7 +336,7 @@
         }
 
         wxFile f(name, wxFile::write);
-        if ( !f.IsOpened() )
+        if ( !f.Access(name, wxFile::write) || !f.IsOpened() )
         {
             return false;
         }

--- End code ---

--- End quote ---
I don't see any problem with the old code. If the file cannot be opened that way using the constructor f.IsOpened() will return false...?! Can you give more details, please?

Edit:
Would this be better:

--- Code: ---        wxFile f;
        if (!f.Open(name, wxFile::write))
            return false;

--- End code ---
???
And if so: Why?

Navigation

[0] Message Index

[#] Next page

[*] Previous page

Go to full version