| View Issue Details [ Jump to Notes ] | [ Issue History ] [ Print ] |
| ID | Project | Category | View Status | Date Submitted | Last Update |
| 0000118 | aMule | Misc | public | 2004-08-10 05:15 | 2004-08-10 10:18 |
|
| Reporter | lucasvr | |
| Assigned To | Xaignar | |
| Priority | normal | Severity | minor | Reproducibility | always |
| Status | resolved | Resolution | fixed | |
| Platform | | OS | | OS Version | |
| Product Version | | |
| Target Version | | Fixed in Version | | |
|
| Summary | 0000118: Fix for missing headers on Preferences.h |
| Description | Preferences.h doesn't include arrstr.h, which is needed when using wxGTK 2.5.2. |
| Additional Information | Patch against CVS-20040809. |
| Tags | No tags attached. |
|
| Fixed in Revision | |
| Operating System | |
|
| Attached Files | 06-Preferences_h.patch [^] (451 bytes) 2004-08-10 05:15 [Show Content] [Hide Content]--- amule-cvs/src/Preferences.h.orig 2004-08-09 19:34:57.000000000 -0300
+++ amule-cvs/src/Preferences.h 2004-08-09 19:36:02.000000000 -0300
@@ -28,7 +28,8 @@
#include <wx/dynarray.h>
#include <wx/defs.h> // Needed before any other wx/*.h
-#include <wx/string.h> // Needed for wxArrayString
+#include <wx/string.h> // Needed for wxString
+#include <wx/arrstr.h> // Needed for wxArrayString
enum EViewSharedFilesAccess{
vsfaEverybody = 0,
|
|