| View Issue Details [ Jump to Notes ]  | [ Issue History ] [ Print ]  | 
| ID | Project | Category | View Status | Date Submitted | Last Update | 
| 0000115 | aMule | Feature Request | public | 2004-08-09 16:12 | 2004-08-09 18:39 | 
 | 
| Reporter | lucasvr |   | 
| Assigned To | Xaignar |   | 
| Priority | normal | Severity | feature | Reproducibility | always | 
| Status | resolved | Resolution | fixed |   | 
| Platform |  | OS |  | OS Version |  | 
| Product Version |  |   | 
| Target Version |  | Fixed in Version |  |   | 
 | 
| Summary | 0000115: Missing wxGTK headers on AddFriend.cpp | 
| Description | AddFriend.cpp doesn't compile fine without the declaration of some extra wxGTK 2.5.2 headers. | 
| Additional Information | The attached patch fixes the build. | 
| Tags | No tags attached. | 
 | 
| Fixed in Revision |  | 
| Operating System |  | 
 | 
| Attached Files |   05-AddFriend_cpp.patch [^] (544 bytes) 2004-08-09 16:12 [Show Content] [Hide Content]--- aMule-2.0.0rc5/src/AddFriend.cpp.orig	2004-08-09 11:12:49.000000000 -0300
+++ aMule-2.0.0rc5/src/AddFriend.cpp	2004-08-09 11:15:03.000000000 -0300
@@ -23,6 +23,9 @@
 #endif
 #include <wx/defs.h>		// Needed before any other wx/*.h
 #include <wx/intl.h>		// Needed for _
+#include <wx/sizer.h>		// Needed for struct wxSizer
+#include <wx/textctrl.h>	// Needed for struct wxTextCtrl
+#include <wx/msgdlg.h>		// Needed for wxMessageBox()
 
 #include "AddFriend.h"		// Interface declarations.
 #include "muuli_wdr.h"		// Needed for addFriendDlg
 
 | 
 |