nobody at rubyforge.org
2007-Apr-29 16:15 UTC
[Wxruby-development] [989] branches/wxruby2/wxwidgets_282: Fix a crasher with misdirected ComboBox#GetSelection method on GTK; clearer
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head><meta http-equiv="content-type" content="text/html; charset=utf-8" /><style type="text/css"><!-- #msg dl { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; } #msg dt { float: left; width: 6em; font-weight: bold; } #msg dt:after { content:'':'';} #msg dl, #msg dt, #msg ul, #msg li, #header, #footer { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; } #msg dl a { font-weight: bold} #msg dl a:link { color:#fc3; } #msg dl a:active { color:#ff0; } #msg dl a:visited { color:#cc6; } h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; } #msg pre { overflow: auto; background: #ffc; border: 1px #fc0 solid; padding: 6px; } #msg ul, pre { overflow: auto; } #header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; } #patch { width: 100%; } #patch h4 {font-family: verdana,arial,helvetica,sans-serif;font-size:10pt;padding:8px;background:#369;color:#fff;margin:0;} #patch .propset h4, #patch .binary h4 {margin:0;} #patch pre {padding:0;line-height:1.2em;margin:0;} #patch .diff {width:100%;background:#eee;padding: 0 0 10px 0;overflow:auto;} #patch .propset .diff, #patch .binary .diff {padding:10px 0;} #patch span {display:block;padding:0 10px;} #patch .modfile, #patch .addfile, #patch .delfile, #patch .propset, #patch .binary, #patch .copfile {border:1px solid #ccc;margin:10px 0;} #patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;} #patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;} #patch .lines, .info {color:#888;background:#fff;} --></style> <title>[989] branches/wxruby2/wxwidgets_282: Fix a crasher with misdirected ComboBox#GetSelection method on GTK; clearer</title> </head> <body> <div id="msg"> <dl> <dt>Revision</dt> <dd>989</dd> <dt>Author</dt> <dd>brokentoy</dd> <dt>Date</dt> <dd>2007-04-29 12:15:23 -0400 (Sun, 29 Apr 2007)</dd> </dl> <h3>Log Message</h3> <pre>Fix a crasher with misdirected ComboBox#GetSelection method on GTK; clearer disambiguating method names</pre> <h3>Modified Paths</h3> <ul> <li><a href="#brancheswxruby2wxwidgets_282doctextilecomboboxtxtl">branches/wxruby2/wxwidgets_282/doc/textile/combobox.txtl</a></li> <li><a href="#brancheswxruby2wxwidgets_282swigclassesComboBoxi">branches/wxruby2/wxwidgets_282/swig/classes/ComboBox.i</a></li> </ul> </div> <div id="patch"> <h3>Diff</h3> <a id="brancheswxruby2wxwidgets_282doctextilecomboboxtxtl"></a> <div class="modfile"><h4>Modified: branches/wxruby2/wxwidgets_282/doc/textile/combobox.txtl (988 => 989)</h4> <pre class="diff"><span> <span class="info">--- branches/wxruby2/wxwidgets_282/doc/textile/combobox.txtl        2007-04-29 14:13:09 UTC (rev 988) +++ branches/wxruby2/wxwidgets_282/doc/textile/combobox.txtl        2007-04-29 16:15:23 UTC (rev 989) </span><span class="lines">@@ -60,14 +60,14 @@ </span><span class="cx"> * "ComboBox#get_insertion_point":#ComboBox_getinsertionpoint </span><span class="cx"> * "ComboBox#get_last_position":#ComboBox_getlastposition </span><span class="cx"> * "ComboBox#get_current_selection":#ComboBox_getcurrentselection </span><del>-* "ComboBox#get_selection_range":#ComboBox_getselectionrange </del><ins>+* "ComboBox#get_text_selection_range":#ComboBox_gettextselectionrange </ins><span class="cx"> * "ComboBox#paste":#ComboBox_paste </span><span class="cx"> * "ComboBox#redo":#ComboBox_redo </span><span class="cx"> * "ComboBox#replace":#ComboBox_replace </span><span class="cx"> * "ComboBox#remove":#ComboBox_remove </span><span class="cx"> * "ComboBox#set_insertion_point":#ComboBox_setinsertionpoint </span><span class="cx"> * "ComboBox#set_insertion_point_end":#ComboBox_setinsertionpointend </span><del>-* "ComboBox#set_selection_range":#ComboBox_setselectionrange </del><ins>+* "ComboBox#set_text_selection_range":#ComboBox_settextselectionrange </ins><span class="cx"> * "ComboBox#set_value":#ComboBox_setvalue </span><span class="cx"> * "ComboBox#undo":#ComboBox_undo </span><span class="cx"> </span><span class="lines">@@ -190,9 +190,9 @@ </span><span class="cx"> </span><span class="cx"> Returns the last position in the combobox text field. </span><span class="cx"> </span><del>-h3(#ComboBox_getselectionrange). ComboBox#get_selection_range </del><ins>+h3(#ComboBox_gettextselectionrange). ComboBox#get_text_selection_range </ins><span class="cx"> </span><del>- Integer from, Integer to = *get_selection_range*() </del><ins>+ Integer from, Integer to = *get_text_selection_range*() </ins><span class="cx"> </span><span class="cx"> This is the same as </span><span class="cx"> "TextCtrl#get_selection":textctrl.html#TextCtrl_getselection </span><span class="lines">@@ -258,9 +258,9 @@ </span><span class="cx"> </span><span class="cx"> Sets the insertion point at the end of the combobox text field. </span><span class="cx"> </span><del>-h3(#ComboBox_setselectionrange). ComboBox#set_selection_range </del><ins>+h3(#ComboBox_settextselectionrange). ComboBox#set_text_selection_range </ins><span class="cx"> </span><del>- *set_selection*(%(arg-type)Integer% from, %(arg-type)Integer% to) </del><ins>+ *set_text_selection_range*(%(arg-type)Integer% from, %(arg-type)Integer% to) </ins><span class="cx"> </span><span class="cx"> Selects the text between the two positions, in the combobox text field. </span><span class="cx"> </span></span></pre></div> <a id="brancheswxruby2wxwidgets_282swigclassesComboBoxi"></a> <div class="modfile"><h4>Modified: branches/wxruby2/wxwidgets_282/swig/classes/ComboBox.i (988 => 989)</h4> <pre class="diff"><span> <span class="info">--- branches/wxruby2/wxwidgets_282/swig/classes/ComboBox.i        2007-04-29 14:13:09 UTC (rev 988) +++ branches/wxruby2/wxwidgets_282/swig/classes/ComboBox.i        2007-04-29 16:15:23 UTC (rev 989) </span><span class="lines">@@ -8,8 +8,8 @@ </span><span class="cx"> %ignore wxComboBox::wxComboBox(); </span><span class="cx"> </span><span class="cx"> // methods for getting and setting the text selection </span><del>-%rename (SetSelectionRange) SetSelection(long from, long to); -%rename (GetSelectionRange) GetSelection(long *from, long *to); </del><ins>+%rename (SetTextSelectionRange) wxComboBox::SetSelection(long from, long to); +%rename (GetTextSelectionRange) wxComboBox::GetSelection(long *from, long *to) const; </ins><span class="cx"> %apply long * OUTPUT { long *from, long *to } </span><span class="cx"> </span><span class="cx"> </span></span></pre> </div> </div> </body> </html>
Reasonably Related Threads
- [906] branches/wxruby2/wxwidgets_282: Wx::ComboBox API 2.6 -> 2.8, plus some doc corrections
- wxRuby2 preview 0.0.40 released
- [909] branches/wxruby2/wxwidgets_282/doc/textile/combobox.txtl: Correct disambiguated method names in methods listing
- Validation and ComboBox
- [744] trunk/wxruby2: get_data support & mem mgmt to all ControlWithItems types, using more