Commit 9fa557e31fd6987060155f0c53a962f3daa3449e
1 parent
aec58070
Exists in
master
and in
5 other branches
Updating application based on latest changes on lib3270 & libv3270.
Showing
3 changed files
with
4 additions
and
3 deletions
Show diff stats
.gitignore
src/pw3270/actions.c
| ... | ... | @@ -228,7 +228,7 @@ static void do_copy(GtkAction *action, GtkWidget *widget, gboolean cut) |
| 228 | 228 | } |
| 229 | 229 | |
| 230 | 230 | trace_action(action,widget); |
| 231 | - v3270_copy(widget,mode,cut); | |
| 231 | + v3270_copy_selection(widget,mode,cut); | |
| 232 | 232 | } |
| 233 | 233 | |
| 234 | 234 | static void copy_action(GtkAction *action, GtkWidget *widget) |
| ... | ... | @@ -244,7 +244,7 @@ static void cut_action(GtkAction *action, GtkWidget *widget) |
| 244 | 244 | static void append_action(GtkAction *action, GtkWidget *widget) |
| 245 | 245 | { |
| 246 | 246 | trace_action(action,widget); |
| 247 | - v3270_copy_append(widget); | |
| 247 | + v3270_append_selection(widget,FALSE); | |
| 248 | 248 | } |
| 249 | 249 | |
| 250 | 250 | static void paste_clipboard_action(GtkAction *action, GtkWidget *widget) | ... | ... |