diff --git a/TODO b/TODO index 6a3180092..ec60d3852 100644 --- a/TODO +++ b/TODO @@ -23,7 +23,6 @@ INTERPRETER - MOD with floats. - Make the error information associated with the current stack frame. - Timer.TimeLeft. -- NOT LIKE, NOT BEGINS and NOT ENDS. - OPEN ... LOCK. True lock while reading/writing a file. DEVELOPMENT ENVIRONMENT diff --git a/gb.gtk/src/gtextarea.cpp b/gb.gtk/src/gtextarea.cpp index e7762e002..79836b9be 100644 --- a/gb.gtk/src/gtextarea.cpp +++ b/gb.gtk/src/gtextarea.cpp @@ -279,11 +279,7 @@ void gTextArea::paste() txt = gClipboard::getText(); if (txt) - { gtk_text_buffer_insert_at_cursor(buf,(const gchar *)txt,-1); - g_free(txt); - } - } void gTextArea::insert(const char *txt) @@ -471,11 +467,3 @@ int gTextArea::textHeight() waitForLayout(&w, &h); return h; } - - - - - - - -