all repos — fluxbox @ 09c0d67fadb098f06c47f925de2308202cb57a92

custom fork of the fluxbox windowmanager

minor fix for old gcc compiler
fluxgen fluxgen
commit

09c0d67fadb098f06c47f925de2308202cb57a92

parent

b6fcfd8112afbee624ccd16256586801ebd12a04

1 files changed, 2 insertions(+), 2 deletions(-)

jump to
M src/FbTk/TextBox.ccsrc/FbTk/TextBox.cc

@@ -19,7 +19,7 @@ // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING

// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // DEALINGS IN THE SOFTWARE. -// $Id: TextBox.cc,v 1.8 2004/03/18 14:33:09 fluxgen Exp $ +// $Id: TextBox.cc,v 1.9 2004/04/19 18:57:30 fluxgen Exp $ #include "TextBox.hh" #include "Font.hh"

@@ -217,7 +217,7 @@ killToEnd();

break; case XK_c: cursorHome(); - m_text.clear(); + m_text = ""; adjustStartPos(); adjustEndPos(); break;