You can subscribe to this list here.
2004 |
Jan
|
Feb
|
Mar
(5) |
Apr
(7) |
May
(11) |
Jun
(19) |
Jul
(9) |
Aug
(5) |
Sep
(6) |
Oct
(18) |
Nov
(9) |
Dec
(20) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2005 |
Jan
(8) |
Feb
(1) |
Mar
(5) |
Apr
(1) |
May
(1) |
Jun
(73) |
Jul
(128) |
Aug
(39) |
Sep
(91) |
Oct
(24) |
Nov
(42) |
Dec
(37) |
2006 |
Jan
(8) |
Feb
(22) |
Mar
(15) |
Apr
(44) |
May
(13) |
Jun
(9) |
Jul
(19) |
Aug
(35) |
Sep
(28) |
Oct
(53) |
Nov
(19) |
Dec
(29) |
2007 |
Jan
(28) |
Feb
(37) |
Mar
(86) |
Apr
(14) |
May
(48) |
Jun
(2) |
Jul
(20) |
Aug
(19) |
Sep
(19) |
Oct
(8) |
Nov
(11) |
Dec
(11) |
2008 |
Jan
(3) |
Feb
(1) |
Mar
(22) |
Apr
(7) |
May
(3) |
Jun
|
Jul
(16) |
Aug
(10) |
Sep
(5) |
Oct
(3) |
Nov
(24) |
Dec
(9) |
2009 |
Jan
(14) |
Feb
(4) |
Mar
(16) |
Apr
(13) |
May
(22) |
Jun
(3) |
Jul
(3) |
Aug
(8) |
Sep
(20) |
Oct
(18) |
Nov
(5) |
Dec
(11) |
2010 |
Jan
(4) |
Feb
(4) |
Mar
(7) |
Apr
(5) |
May
(41) |
Jun
(15) |
Jul
(3) |
Aug
(2) |
Sep
(9) |
Oct
(7) |
Nov
(8) |
Dec
(3) |
2011 |
Jan
(28) |
Feb
(29) |
Mar
(3) |
Apr
(7) |
May
(3) |
Jun
(1) |
Jul
(1) |
Aug
(2) |
Sep
|
Oct
(4) |
Nov
(7) |
Dec
|
2012 |
Jan
(3) |
Feb
(4) |
Mar
(3) |
Apr
(3) |
May
(2) |
Jun
(2) |
Jul
(3) |
Aug
(3) |
Sep
(2) |
Oct
(3) |
Nov
|
Dec
(1) |
2013 |
Jan
|
Feb
|
Mar
(4) |
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
(2) |
Sep
|
Oct
|
Nov
(7) |
Dec
(5) |
2014 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(5) |
Dec
|
2015 |
Jan
(7) |
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2018 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
|
2019 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2022 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
From: SourceForge.net <no...@so...> - 2010-01-15 06:48:01
|
Bugs item #2932605, was opened at 2010-01-15 06:48 Message generated for change (Tracker Item Submitted) made by nobody You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=462816&aid=2932605&group_id=51305 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: wxJSON Group: last released version Status: Open Resolution: None Priority: 5 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: wxJSONWriter buffer overflow Initial Comment: wxJSONWriter can cause a buffer overflow when wxJSON_USE_UNICODE is defined. In writeIntValue and WriteUIntValue, the following causes a buffer overflow: char buffer[32]; // need to store 64-bits integers (max 20 digits) NOTE THAT THIS BUFFER'S MEMORY IS NOT ZEROED ... len = strlen( cbData ); wxASSERT( len <= 32 ); memcpy( buffer, cbData, len ); <--- NOTE THAT buffer IS ONLY NULL-TERMINATED HERE IF YOU'RE LUCKY ... len = strlen( buffer ); <--- THIS LENGTH IS INDETERMINANT BECAUSE buffer IS NOT NULL TERMINATED os.Write( buffer, len ); <---- BUFFER OVERRUN!!!!!!!!!!!!!! Something like this is a quick fix: wxASSERT( len < 32 ); <--- len must be less than 32 memcpy( buffer, cbData, len ); buffer[len] = 0; <--- null terminate the string ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=462816&aid=2932605&group_id=51305 |
From: SourceForge.net <no...@so...> - 2010-01-11 13:26:15
|
Bugs item #2929811, was opened at 2010-01-11 13:26 Message generated for change (Tracker Item Submitted) made by theroe You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=462816&aid=2929811&group_id=51305 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: treelistctrl Group: Subversion TRUNK Status: Open Resolution: None Priority: 5 Private: No Submitted By: Richard Öhlinger (theroe) Assigned to: Ronan Chartois (pgriddev) Summary: When commiting an edit with Enter dialog get accepted Initial Comment: If a wxTreeListCtrl is used in a Dialog (or a Wizard) and someone ends editing an item by hitting Enter. The "Ok" button "gets pressed". The wxEditTextCtrl should have the style xTE_PROCESS_ENTER set. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=462816&aid=2929811&group_id=51305 |
From: SourceForge.net <no...@so...> - 2010-01-03 02:35:37
|
Bugs item #2925100, was opened at 2010-01-03 02:35 Message generated for change (Tracker Item Submitted) made by ettlmartin You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=462816&aid=2925100&group_id=51305 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: wxpdfdoc Group: Subversion TRUNK Status: Open Resolution: None Priority: 5 Private: No Submitted By: orbitcowboy (ettlmartin) Assigned to: Nobody/Anonymous (nobody) Summary: [cppcheck][wxpdfdoc] found missmatch in alloc/dealloc of mem Initial Comment: during a check with cppcheck, the tool found a missmatch in allocation and deallocation of memory. This is a potential source of a memory leak. Please refer the attached patch that fixes the issue. Best regards Ettl Martin ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=462816&aid=2925100&group_id=51305 |
From: SourceForge.net <no...@so...> - 2010-01-03 00:30:06
|
Bugs item #2925067, was opened at 2010-01-03 00:29 Message generated for change (Tracker Item Submitted) made by ettlmartin You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=462816&aid=2925067&group_id=51305 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: wxJSON Group: Subversion TRUNK Status: Open Resolution: None Priority: 5 Private: No Submitted By: orbitcowboy (ettlmartin) Assigned to: Nobody/Anonymous (nobody) Summary: [cppcheck] [wxJson] found a resource leak in samples Initial Comment: during a check with the static code analysis tool cppcheck, the tool discoverd a resource leak in wxcode/trunk/wxCode/components/wxjson/samples/hexd.cpp Please refer the attached patch that fixes the issue. Best regards Ettl Martin ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=462816&aid=2925067&group_id=51305 |
From: SourceForge.net <no...@so...> - 2009-12-18 20:05:38
|
Bugs item #2917227, was opened at 2009-12-18 20:05 Message generated for change (Tracker Item Submitted) made by ettlmartin You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=462816&aid=2917227&group_id=51305 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: orbitcowboy (ettlmartin) Assigned to: Nobody/Anonymous (nobody) Summary: [cppcheck] found missmatch in allocation/deallocation in Initial Comment: hi, i have checked the sources of shapeframwork with the static code analysis tool cppcheck and found three issue: - a missmatching allocation and deallocation Please see the attached patch Best regards ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=462816&aid=2917227&group_id=51305 |
From: SourceForge.net <no...@so...> - 2009-12-18 01:51:06
|
Patches item #2916626, was opened at 2009-12-18 01:33 Message generated for change (Tracker Item Submitted) made by jlblanco You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=462818&aid=2916626&group_id=51305 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: Subversion TRUNK Status: Open Resolution: None Priority: 5 Private: No Submitted By: J.L. Blanco (jlblanco) Assigned to: Nobody/Anonymous (nobody) Summary: Patch to fix DLL linkage errors in wxFreeChart Initial Comment: Hello, When wxWidgets is compiled as DLL,and wxFreeChart is embedded (/D_LOCAL_) in another project, there are many linkage errors. The errors are very easily solved by replacing the declarations "WX_DECLARE_EXPORTED_OBJARRAY" with "WX_DECLARE_USER_EXPORTED_OBJARRAY", so the WXDLLIMPEXP_CORE is replaced by WXDLLIMPEXP_FREECHART. I attach the small patch to fix this. Please, apply it to trunk. I tried myself just in case, but obviously had no rights... Best, JL ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=462818&aid=2916626&group_id=51305 |
From: SourceForge.net <no...@so...> - 2009-12-08 22:12:13
|
Feature Requests item #2911015, was opened at 2009-12-08 17:12 Message generated for change (Tracker Item Submitted) made by mfunduc You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=462819&aid=2911015&group_id=51305 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: MikeF (mfunduc) Assigned to: Nobody/Anonymous (nobody) Summary: Unicode support added to wxTreeListCtrl Initial Comment: Unicode support added to wxTreeListCtrl. Just a few macros were missing in the source and test program. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=462819&aid=2911015&group_id=51305 |
From: SourceForge.net <no...@so...> - 2009-12-08 16:05:32
|
Bugs item #2910776, was opened at 2009-12-08 17:05 Message generated for change (Tracker Item Submitted) made by luccat You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=462816&aid=2910776&group_id=51305 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: wxJSON Group: last released version Status: Open Resolution: None Priority: 5 Private: No Submitted By: Luciano Cattani (luccat) Assigned to: Nobody/Anonymous (nobody) Summary: [wxJSON <= 1.1] bug in writing double values Initial Comment: Hi all, there is a bug in the wxJSONWriter class which does not write doubles correctly. Try this: { wxJSONValue root; root.Append( 90.3 ); root.Append( 9.123456 ); root.Append( 10.123456789 ); root.Append( 0.1234 ); wxString str; wxJSONWriter wrt; wrt.Write( root, str ); } You get: [ 90.300000, 9.123456, 10.123457, 0.123400 ] The problem is in the snprintf() function which truncates the output of doubles at 6 digits of precision if a precision is not specified in the format string parameter. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=462816&aid=2910776&group_id=51305 |
From: SourceForge.net <no...@so...> - 2009-12-07 21:02:33
|
Bugs item #2910286, was opened at 2009-12-07 21:02 Message generated for change (Tracker Item Submitted) made by ettlmartin You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=462816&aid=2910286&group_id=51305 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: orbitcowboy (ettlmartin) Assigned to: Nobody/Anonymous (nobody) Summary: found a possible nullpointer dereference in webupdate Initial Comment: During a check of the current svn-head of wxcode source with the static code analysis tool cppcheck, i found a possible nullpointer dereference in file wxcode/trunk/wxCode/components/webupdate/src/stdactions.cpp at line 175. I have fixed this issue. Please see the attached patch. Best regards Ettl Martin ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=462816&aid=2910286&group_id=51305 |
From: SourceForge.net <no...@so...> - 2009-12-05 15:37:54
|
Bugs item #2909326, was opened at 2009-12-05 16:37 Message generated for change (Tracker Item Submitted) made by luccat You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=462816&aid=2909326&group_id=51305 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: wxJSON Group: last released version Status: Open Resolution: None Priority: 5 Private: No Submitted By: Luciano Cattani (luccat) Assigned to: Nobody/Anonymous (nobody) Summary: [wxJSON v1.1] error reading unrepresentable chars in ANSI Initial Comment: There is a bug in the wxJSONReader::ConvertCharByChar() function causing the last character of a UTF-8 string value to be ignored. This only happens when the reader reads a UTF-8 string that contains characters that cannot be represented in the current locale so a char-by-char conversion takes place. For example, if you read the following UTF-8 stream in ANSI mode (localized in a ISO-8859-1 environment): [ "abcABC", // US-ASCII "àèì©®", // latin-1 "αβγδ", // greek "ФХЦЧ" // cyrillic ] You get the following JSON value object: [ "abcABC", "àèì©®", "\u03B1\u03B2\u03B3", "\u0424\u0425\u0426" ] As you can see, only the first three chars are read for greek and cyrillic. The fourth char was discarded. Note that the bug only happens in ANSI mode and only when the string contains unrepresentable chars. Luciano ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=462816&aid=2909326&group_id=51305 |
From: SourceForge.net <no...@so...> - 2009-12-02 20:55:59
|
Bugs item #2907746, was opened at 2009-12-02 20:55 Message generated for change (Tracker Item Submitted) made by ettlmartin You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=462816&aid=2907746&group_id=51305 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: any Group: Subversion TRUNK Status: Open Resolution: None Priority: 5 Private: No Submitted By: orbitcowboy (ettlmartin) Assigned to: Nobody/Anonymous (nobody) Summary: check ogl code with static code analysis tool cppcheck Initial Comment: hi, i have checked the sources of ogl-code with the static code analysis tool cppcheck and found three issue: - a missmatching allocation and deallocation Please see the attached patch Best regards ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=462816&aid=2907746&group_id=51305 |
From: SourceForge.net <no...@so...> - 2009-12-02 20:53:21
|
Bugs item #2907745, was opened at 2009-12-02 20:53 Message generated for change (Tracker Item Submitted) made by ettlmartin You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=462816&aid=2907745&group_id=51305 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: any Group: Subversion TRUNK Status: Open Resolution: None Priority: 5 Private: No Submitted By: orbitcowboy (ettlmartin) Assigned to: Nobody/Anonymous (nobody) Summary: check ctb with static code analysis tool cppcheck Initial Comment: Hi, i have checked the sources of ctb with the static code analysis tool cppcheck and found three issue: - a missmatch in allocation and deallocation of memory Please refer the attached patch. Best regards Martin ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=462816&aid=2907745&group_id=51305 |
From: SourceForge.net <no...@so...> - 2009-12-02 20:50:44
|
Bugs item #2907744, was opened at 2009-12-02 20:50 Message generated for change (Tracker Item Submitted) made by ettlmartin You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=462816&aid=2907744&group_id=51305 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: any Group: Subversion TRUNK Status: Open Resolution: None Priority: 5 Private: No Submitted By: orbitcowboy (ettlmartin) Assigned to: Nobody/Anonymous (nobody) Summary: check avtable with static code analysis tool cppcheck Initial Comment: hi, i have checked the sources of wxpdfdoc with the static code analysis tool cppcheck and found three issue: - a missmatching allocation and deallocation Please see the attached patch Best regards Martin ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=462816&aid=2907744&group_id=51305 |
From: SourceForge.net <no...@so...> - 2009-12-02 20:45:53
|
Bugs item #2907742, was opened at 2009-12-02 20:45 Message generated for change (Tracker Item Submitted) made by ettlmartin You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=462816&aid=2907742&group_id=51305 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: wxpdfdoc Group: Subversion TRUNK Status: Open Resolution: None Priority: 5 Private: No Submitted By: orbitcowboy (ettlmartin) Assigned to: Nobody/Anonymous (nobody) Summary: check with static code analysis tool cppcheck Initial Comment: Hi, i have checked the sources of wxpdfdoc with the static code analysis tool cppcheck and found three issues: - a regression ( too many ')' ) - a wrong usage of delete operator - a possible buffer overrun. I fixed in the attached paches. Best regards Martin ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=462816&aid=2907742&group_id=51305 |
From: SourceForge.net <no...@so...> - 2009-12-01 21:57:39
|
Bugs item #2907135, was opened at 2009-12-01 21:57 Message generated for change (Tracker Item Submitted) made by ettlmartin You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=462816&aid=2907135&group_id=51305 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: Subversion TRUNK Status: Open Resolution: None Priority: 5 Private: No Submitted By: orbitcowboy (ettlmartin) Assigned to: Nobody/Anonymous (nobody) Summary: possible nullpointer dereference in wxCurl Initial Comment: hello, i have checked the sources with the static code anlysis tool cppcheck. It found an issue in file wxcode/trunk/wxCode/components/wxcurl/thirdparty/curl/lib/transfer.c at line 2475. In order to avoid a possible nullpointer dereference, it is better to first check the pointer it is NULL and then derference it. Please see the attached patch. Best regards Martin Ettl ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=462816&aid=2907135&group_id=51305 |
From: SourceForge.net <no...@so...> - 2009-11-21 21:53:20
|
Feature Requests item #2901898, was opened at 2009-11-21 23:53 Message generated for change (Tracker Item Submitted) made by mustafa95 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=462819&aid=2901898&group_id=51305 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: (mustafa95) Assigned to: Nobody/Anonymous (nobody) Summary: Filtering for wxAdvTable Initial Comment: Hi, Does wxadvtable support Filtering? For example: If we type some letters to wxTextCtrl,only matched words(rows) will be shown. Regex filter for given cells and rows/cols will make better. moskvichev, Sorry, I've forget to say this feature request or I'm missing something that maybe I misunderstand at filtering support mentioned in "ReadMe.txt" Regards ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=462819&aid=2901898&group_id=51305 |
From: SourceForge.net <no...@so...> - 2009-11-19 16:52:47
|
Feature Requests item #2900588, was opened at 2009-11-19 18:52 Message generated for change (Tracker Item Submitted) made by mustafa95 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=462819&aid=2900588&group_id=51305 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: (mustafa95) Assigned to: Nobody/Anonymous (nobody) Summary: Three state sorting Initial Comment: Hi, Is that possible to improve wxAdvTable to have three state sorting. unsorted,ascending,descending. Because, If we want to see unsorted state, we have to close Table and reopen. Regards ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=462819&aid=2900588&group_id=51305 |
From: SourceForge.net <no...@so...> - 2009-11-19 16:50:02
|
Feature Requests item #2900584, was opened at 2009-11-19 18:50 Message generated for change (Tracker Item Submitted) made by mustafa95 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=462819&aid=2900584&group_id=51305 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: (mustafa95) Assigned to: Nobody/Anonymous (nobody) Summary: DateRenderer for wxAdvTable Initial Comment: Hi, I have a suggestion for wxAdvTable. I've read the "ReadMe.txt" file and there are three renderers for wxadvTable. "wxAdvStringCellRender for string data, wxAdvBoolCellRenderer for boolean data, wxAdvColourCellRenderer for color data" I've used JTable at Swing. for example: for Date class Date.class, for Integer class Integer.class etc. At this address there is an example: http://www.esus.com/docs/GetQuestionPage.jsp?uid=1270 At second column we can put cell contents as Date class, and Date column(second column) is sortable. There is wxDateTime(http://docs.wxwidgets.org/stable/wx_wxdatetime.html) class that we can put this class's value to as cell value and If we control these date values with wxDatePickerControl(http://docs.wxwidgets.org/stable/wx_wxdatepickerctrl.html) or wxCalendarCtrl(http://docs.wxwidgets.org/stable/wx_wxcalendarctrl.html) makes the wxAdvTable great. I've tried wxWidget's wxGrid demo example that comes with wxWidget examples. In that example there are ComboBox and other editors for cell. Does wxAdvTable support these renderers at the future? Regards ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=462819&aid=2900584&group_id=51305 |
From: SourceForge.net <no...@so...> - 2009-11-17 00:19:40
|
Bugs item #2898794, was opened at 2009-11-17 02:19 Message generated for change (Tracker Item Submitted) made by catalinr You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=462816&aid=2898794&group_id=51305 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: wxJSON Group: last released version Status: Open Resolution: None Priority: 5 Private: No Submitted By: catalin (catalinr) Assigned to: Nobody/Anonymous (nobody) Summary: [wxJSON][v1.1] Build errors and warnings with gcc Initial Comment: Hi, I've put comments in the patch. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=462816&aid=2898794&group_id=51305 |
From: SourceForge.net <no...@so...> - 2009-11-04 22:54:06
|
Bugs item #2892271, was opened at 2009-11-05 00:54 Message generated for change (Tracker Item Submitted) made by mustafa95 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=462816&aid=2892271&group_id=51305 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: (mustafa95) Assigned to: Nobody/Anonymous (nobody) Summary: wxAdvTable row/col resize Initial Comment: When we activate row/col resize with SetResizeAllRowsAllowed() and SetResizeAllColsAllowed() methods. advTable->SetResizeAllRowsAllowed(true); advTable->SetResizeAllColsAllowed(true); If we resize the row/col, cell contents are disappear and mixed. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=462816&aid=2892271&group_id=51305 |
From: SourceForge.net <no...@so...> - 2009-10-29 14:03:01
|
Bugs item #2888798, was opened at 2009-10-29 14:03 Message generated for change (Tracker Item Submitted) made by nobody You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=462816&aid=2888798&group_id=51305 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: wxJSON Group: Subversion TRUNK Status: Open Resolution: None Priority: 5 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: [wxJSON ver. <= 1.0] bug in the wxJSONValue::UnRef() functio Initial Comment: I copy-and-paste the mail received from Bryan Ashby who discovered and fixed the bug: There is a bug in wxJSONValue::UnRef(): A missing "{" is causing m_refData to become NULL even if m_refCount is non-zero. Below is a snip of code with the fix to illustrate: if ( --m_refData->m_refCount == 0 ) { // fix: added "{" here delete m_refData; m_refData = NULL; } // need new closing "}" as well, of course The bug will be fixed in version 1.1 ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=462816&aid=2888798&group_id=51305 |
From: SourceForge.net <no...@so...> - 2009-10-29 11:06:42
|
Bugs item #2888726, was opened at 2009-10-29 11:06 Message generated for change (Tracker Item Submitted) made by nobody You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=462816&aid=2888726&group_id=51305 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: wxARG Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Matías Szeftel (mszeftel) Summary: BUG: wxARG 1.2.0-rc3 & Firebird Initial Comment: In wxActiveRecordGenerator when working with FireBird class wxActiveRecordGenerator in methods Prepare discovered bug: Run the query: === wxString Query = wxString:: Format (wxT ( "SELECT * FROM% s LIMIT 1"), table. c_str ()); DatabaseResultSet * result = m_database-> ExecuteQuery (query); === For FireBird leads to an error "-104: Invalid token", since the keyword LIMIT is not supported by the FireBird. For Corrections should: Lines 100 and 145 module wxActiveRecordGenerator line === wxString Query = wxString:: Format (wxT ( "SELECT * FROM% s LIMIT 1"), table. c_str ()); / / ..... and .... wxString Query = wxString:: Format (wxT ( "SELECT FIRST 1 * FROM% s"), node. m_tableName. c_str ()); === Replace respectively === wxString Query; if ((AR_FIREBIRD == m_dbType) | | (AR_FIREBIRD_EMBEDDED == m_dbType)) ( Query = wxString:: Format (wxT ( "SELECT FIRST 1 * FROM% s"), table. c_str ()); ) else ( Query = wxString:: Format (wxT ( "SELECT * FROM% s LIMIT 1"), table. c_str ()); ) / / ..... and .... wxString Query; if ((AR_FIREBIRD == m_dbType) | | (AR_FIREBIRD_EMBEDDED == m_dbType)) ( Query = wxString:: Format (wxT ( "SELECT FIRST 1 * FROM% s"), node. m_tableName. c_str ()); ) else ( Query = wxString:: Format (wxT ( "SELECT * FROM% s LIMIT 1"), node. m_tableName. c_str ()); ) === ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=462816&aid=2888726&group_id=51305 |
From: Troels K <tr...@kn...> - 2009-10-27 12:03:23
|
Thanks! Troels On Mon, Oct 26, 2009 at 5:35 PM, Francesco Montorsi <f18...@ya... > wrote: > Troels K ha scritto: > > Hi Francesco > > > > John says it's ok that I contribute. Please move wxStEdit from cvs to > > svn first. > done now (together with other John's components that he asked me to move). > > Good work! > Francesco > > |
From: Francesco M. <f18...@ya...> - 2009-10-26 16:36:19
|
Troels K ha scritto: > Hi Francesco > > John says it's ok that I contribute. Please move wxStEdit from cvs to > svn first. done now (together with other John's components that he asked me to move). Good work! Francesco |
From: Francesco M. <f18...@ya...> - 2009-10-25 13:05:57
|
Hi, if your component targets wx2.9 on Mac, I'd suggest you to rebake it (if you're using wx bakefiles and the 'autoconf' format) since I've just fixed a bug in wxwin.m4 macro file (https://sourceforge.net/tracker/?func=detail&atid=462816&aid=2880364&group_id=51305). Bye, Francesco |