[Freeciv-Dev] [bug #19383] missing NULL in object commands

2012-02-01 Thread no info yet
URL: Summary: missing NULL in object commands Project: Freeciv Submitted by: bit Submitted on: Mi 01 Feb 2012 14:08:38 GMT Category: None Severity: 3 - Normal Pr

[Freeciv-Dev] [bug #19384] const-problem for client_optset and server_optset

2012-02-01 Thread no info yet
URL: Summary: const-problem for client_optset and server_optset Project: Freeciv Submitted by: bit Submitted on: Mi 01 Feb 2012 14:13:10 GMT Category: None Severity: 3 - Normal

[Freeciv-Dev] [bug #19385] inconsequent return-type

2012-02-01 Thread no info yet
URL: Summary: inconsequent return-type Project: Freeciv Submitted by: bit Submitted on: Mi 01 Feb 2012 14:17:23 GMT Category: None Severity: 3 - Normal Priority:

[Freeciv-Dev] [bug #19386] not a const (1)

2012-02-01 Thread no info yet
URL: Summary: not a const (1) Project: Freeciv Submitted by: bit Submitted on: Mi 01 Feb 2012 14:18:40 GMT Category: None Severity: 3 - Normal Priority: 5 - Norm

[Freeciv-Dev] [bug #19387] not a const (2)

2012-02-01 Thread no info yet
URL: Summary: not a const (2) Project: Freeciv Submitted by: bit Submitted on: Mi 01 Feb 2012 14:19:57 GMT Category: None Severity: 3 - Normal Priority: 5 - Norm

[Freeciv-Dev] [bug #19388] not a const (3)

2012-02-01 Thread no info yet
URL: Summary: not a const (3) Project: Freeciv Submitted by: bit Submitted on: Mi 01 Feb 2012 14:32:03 GMT Category: None Severity: 3 - Normal Priority: 5 - Norm

[Freeciv-Dev] [bug #19389] e_game_quit

2012-02-01 Thread no info yet
URL: Summary: e_game_quit Project: Freeciv Submitted by: bit Submitted on: Mi 01 Feb 2012 14:40:29 GMT Category: None Severity: 3 - Normal Priority: 5 - Normal

[Freeciv-Dev] [bug #19385] unit_is_in_focus() returns pointer value as bool

2012-02-01 Thread no info yet
Follow-up Comment #2, bug #19385 (project freeciv): It's not just a warning, it's an error: C2440 not possible to convert the types VC's C++ is absolutely strict in converting types, at least wants to have a static_cast to convert. Kind of inconsequent: It doesn't complain in simple types, so you

[Freeciv-Dev] [bug #19386] not a const (1)

2012-02-01 Thread no info yet
Follow-up Comment #2, bug #19386 (project freeciv): Yup, should be const in the header too. Without VC's linker cries... ___ Reply to this item at: ___ Nachricht

[Freeciv-Dev] [bug #19388] not a const (3)

2012-02-01 Thread no info yet
Follow-up Comment #2, bug #19388 (project freeciv): Hmm, yes, if that's the definition of strpbrk in C, then it's really just because of C and C++, because in C++ we got const char *strpbrk(const char *s1, const char *s2); or char *strpbrk(char *s1, const char *s2); Therefore the necessary split.