View Issue Details [ Jump to Notes ] | [ Issue History ] [ Print ] |
ID | Project | Category | View Status | Date Submitted | Last Update |
0000111 | aMule | Misc | public | 2004-08-09 08:50 | 2004-08-09 18:43 |
|
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 | 0000111: Compile problems with wxGTK 2.5.2 |
Description | 'const wxArrayString' doesn't allow to be initialized with '=0' -- it must be used the 'Clear()' method instead. |
Additional Information | The attached patch fixes the compilation problem on aLinkCreator. |
Tags | No tags attached. |
|
Fixed in Revision | |
Operating System | |
|
Attached Files | 01-ed2khash_cpp.patch [^] (370 bytes) 2004-08-09 08:50 [Show Content] [Hide Content]--- aMule-2.0.0rc5/src/utils/aLinkCreator/src/ed2khash.cpp.orig 2004-08-09 03:16:41.000000000 -0300
+++ aMule-2.0.0rc5/src/utils/aLinkCreator/src/ed2khash.cpp 2004-08-09 03:20:42.000000000 -0300
@@ -68,7 +68,7 @@
/// Constructor
Ed2kHash::Ed2kHash():MD4()
{
- m_ed2kArrayOfHashes = 0;
+ m_ed2kArrayOfHashes.Clear();
m_filename=wxEmptyString;
m_fileSize=0;
}
|
|