This forum can be used to talk about general design strategies, new ideas and questions in general related to wxWidgets. If you feel your questions doesn't fit anywhere, put it here.
-
maxinuruguay
- I live to help wx-kind

- Posts: 198
- Joined: Sat Oct 28, 2006 3:36 am
Post
by maxinuruguay » Sun Apr 06, 2008 7:20 am
How do you do
case ';':
i tried
case '\;':
but Xcode compiler gets mad. Any idea?[/b]
-
ArKay
- Knows some wx things

- Posts: 41
- Joined: Wed Mar 26, 2008 1:38 pm
- Location: Germany
Post
by ArKay » Sun Apr 06, 2008 8:18 am
The problem must be somewhere else in your code, you don't have to escape semicolons.
-
Auria
- Site Admin

- Posts: 6695
- Joined: Thu Sep 28, 2006 12:23 am
-
Contact:
Post
by Auria » Sun Apr 06, 2008 2:23 pm
What error message do you get? What is the problem?
-
maxinuruguay
- I live to help wx-kind

- Posts: 198
- Joined: Sat Oct 28, 2006 3:36 am
Post
by maxinuruguay » Mon Apr 07, 2008 5:08 am
ArKay wrote:The problem must be somewhere else in your code, you don't have to escape semicolons.
Yikes. You are right. Thanks.