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

Compiler issues on Mac OS X

Started by mojca, October 02, 2013, 12:28:01 AM

Previous topic - Next topic

mojca

I would like to ask for a bit of help for creating proper patches for CB on Mac OS X.


       #if defined(__WXMSW__)
           wxCursor copycursor(dnd_copy_cur_xpm);
           wxCursor movecursor(dnd_move_cur_xpm);
           wxCursor nonecursor(dnd_none_cur_xpm);
       #else
           wxIcon copycursor(dnd_copy_cur_xpm);
           wxIcon movecursor(dnd_move_cur_xpm);
           wxIcon nonecursor(dnd_none_cur_xpm);
       #endif
       //wxDragResult result;

       wxDropSource dndSource(m_diagramwindow, copycursor, movecursor, nonecursor);

Thank you.

mojca

The first two issues have been solved. I added others to the new bug tracker on SF, tickets 8-13.

mojca

Related thread about Mac issues on 10.5 is here: http://forums.next.codeblocks.org/index.php/topic,18727.0.html (12.11 and 13.12 on OSX 10.5.8 PPC/Intel)

ollydbg

Hi, mojca, thanks for the report, though I'm not a Mac user.
It looks like we don't have ways to access to BerliOS's tickets system now.
(They are stored as xml files in C::B's svn rev9770 to rev9774)
If some piece of memory should be reused, turn them to variables (or const variables).
If some piece of operations should be reused, turn them to functions.
If they happened together, then turn them to classes.

mojca

I didn't check the SVN yet, but some user posted a compressed snapshot of the website with most of the tickets included.

After I noticed that the tickets were gone I copied the relevant information to SourceForge, so at least in my case all the contents and questions are accessible through SF and linked above.