summaryrefslogtreecommitdiff
path: root/beos/gui.cpp
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2016-05-03 19:45:25 +0100
committerVincent Sanders <vince@kyllikki.org>2016-05-03 19:45:25 +0100
commit246ab6d9ff7504cdc7bf88efe1d4aca987b5c095 (patch)
tree0e145417304181cf040e914b002f7c3858e843f4 /beos/gui.cpp
parent6da3b3102c013b18b6f490d9030e5c2be531fe42 (diff)
downloadnetsurf-246ab6d9ff7504cdc7bf88efe1d4aca987b5c095.tar.gz
netsurf-246ab6d9ff7504cdc7bf88efe1d4aca987b5c095.tar.bz2
allow beos frontend to make clipboard functions private.
reduces the unecessary export of clipboard functions in beos frontend and also removes inclusion of unecessary headers.
Diffstat (limited to 'beos/gui.cpp')
-rw-r--r--beos/gui.cpp6
1 files changed, 1 insertions, 5 deletions
diff --git a/beos/gui.cpp b/beos/gui.cpp
index 4fd2ecf2c..95b159774 100644
--- a/beos/gui.cpp
+++ b/beos/gui.cpp
@@ -948,10 +948,6 @@ void die(const char * const error)
exit(EXIT_FAILURE);
}
-static struct gui_clipboard_table beos_clipboard_table = {
- gui_get_clipboard,
- gui_set_clipboard,
-};
static struct gui_fetch_table beos_fetch_table = {
fetch_filetype,
@@ -981,7 +977,7 @@ int main(int argc, char** argv)
&beos_misc_table,
beos_window_table,
beos_download_table,
- &beos_clipboard_table,
+ beos_clipboard_table,
&beos_fetch_table,
NULL, /* use POSIX file */
NULL, /* default utf8 */