From d106091d6e5df26a83460ae484c31753b873368c Mon Sep 17 00:00:00 2001 From: Michael Drake Date: Mon, 13 Aug 2012 14:43:04 +0100 Subject: Pass font plot style out to front end clipboard append function. --- beos/window.cpp | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'beos') diff --git a/beos/window.cpp b/beos/window.cpp index d62aecf33..572aa86dd 100644 --- a/beos/window.cpp +++ b/beos/window.cpp @@ -1668,7 +1668,8 @@ bool gui_empty_clipboard(void) return true; } -bool gui_add_to_clipboard(const char *text, size_t length, bool space) +bool gui_add_to_clipboard(const char *text, size_t length, bool space, + const plot_font_style_t *fstyle) { BString s; s.SetTo(text, length); @@ -1720,7 +1721,8 @@ static bool copy_handler(const char *text, size_t length, struct box *box, /* add any whitespace which precedes the text from this box */ if (whitespace_text) { if (!gui_add_to_clipboard(whitespace_text, - whitespace_length, false)) { + whitespace_length, false, + plot_style_font)) { return false; } } @@ -1740,7 +1742,7 @@ static bool copy_handler(const char *text, size_t length, struct box *box, } /* add the text from this box */ - if (!gui_add_to_clipboard(text, length, space)) + if (!gui_add_to_clipboard(text, length, space, plot_style_font)) return false; return true; -- cgit v1.2.3