| View Issue Details [ Jump to Notes ] | [ Issue History ] [ Print ] | 
| ID | Project | Category | View Status | Date Submitted | Last Update | 
| 0000114 | aMule | Misc | public | 2004-08-09 16:07 | 2004-08-09 18:39 | 
|  | 
| 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 | 0000114: Missing wxGTK headers on PrefsUnifiedDlg.h | 
| Description | Compilation of 2.0.0rc5 fails with wxGTK 2.5.2 due to missing headers for declaration of wxButton and wxChoice. | 
| Additional Information | The attached patch fixes the build. | 
| Tags | No tags attached. | 
|  | 
| Fixed in Revision |  | 
| Operating System |  | 
|  | 
| Attached Files |  04-PrefsUnifiedDlg_h.patch [^] (430 bytes) 2004-08-09 16:07 [Show Content] [Hide Content] --- aMule-2.0.0rc5/src/PrefsUnifiedDlg.h.orig	2004-08-09 11:07:02.000000000 -0300
+++ aMule-2.0.0rc5/src/PrefsUnifiedDlg.h	2004-08-09 11:09:20.000000000 -0300
@@ -28,6 +28,8 @@
 
 #include <wx/defs.h>		// Needed before any other wx/*.h
 #include <wx/dialog.h>		// Needed for wxDialog
+#include <wx/button.h>		// Needed for wxButton
+#include <wx/choice.h>		// Needed for wxChoice
 #include <wx/config.h>
 #include "muuli_wdr.h"
 
 | 
|  |