| View Issue Details [ Jump to Notes ]  | [ Issue History ] [ Print ]  | 
| ID | Project | Category | View Status | Date Submitted | Last Update | 
| 0000119 | aMule | Misc | public | 2004-08-10 05:18 | 2004-08-10 10:10 | 
 | 
| 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 | 0000119: Fix for missing headers on AddFileThread.cpp | 
| Description | Due to a missing include file, 'wx/filename.h' wasn't being able to define the wxArrayString type. The problem was figured out when compiling with wxGTK 2.5.2. | 
| Additional Information | The attached patch fixes the problem on CVS-20040809. | 
| Tags | No tags attached. | 
 | 
| Fixed in Revision |  | 
| Operating System |  | 
 | 
| Attached Files |   07-AddFileThread_cpp.patch [^] (476 bytes) 2004-08-10 05:18 [Show Content] [Hide Content]--- amule-cvs/src/AddFileThread.cpp.orig	2004-08-10 00:10:50.000000000 -0300
+++ amule-cvs/src/AddFileThread.cpp	2004-08-10 00:11:23.000000000 -0300
@@ -35,6 +35,7 @@
 #include <wx/defs.h>		// Needed before any other wx/*.h
 #include <wx/event.h>		// Needed for wxCommandEvent
 #include <wx/timer.h>		// Needed for wxStopWatch
+#include <wx/arrstr.h>		// Needed for wxArrayString
 #include <wx/filename.h>	// Needed for wxFileName::GetPathSeperator()
 #include <wx/utils.h>
 
 
 | 
 |