summaryrefslogtreecommitdiffstats
path: root/otherlibs/labltk/browser/jg_toplevel.ml
diff options
context:
space:
mode:
Diffstat (limited to 'otherlibs/labltk/browser/jg_toplevel.ml')
-rw-r--r--otherlibs/labltk/browser/jg_toplevel.ml10
1 files changed, 0 insertions, 10 deletions
diff --git a/otherlibs/labltk/browser/jg_toplevel.ml b/otherlibs/labltk/browser/jg_toplevel.ml
deleted file mode 100644
index c36a215ef..000000000
--- a/otherlibs/labltk/browser/jg_toplevel.ml
+++ /dev/null
@@ -1,10 +0,0 @@
-(* $Id$ *)
-
-open Tk
-
-let titled ?:iconname title =
- let iconname = match iconname with None -> title | Some s -> s in
- let tl = Toplevel.create parent:Widget.default_toplevel () in
- Wm.title_set tl :title;
- Wm.iconname_set tl name:iconname;
- tl