aboutsummaryrefslogtreecommitdiff
path: root/src/ui.hh
diff options
context:
space:
mode:
authorJorge Arellano Cid <jcid@dillo.org>2011-03-09 14:20:19 -0300
committerJorge Arellano Cid <jcid@dillo.org>2011-03-09 14:20:19 -0300
commit91775fc630020de9f8505fa731272763167cb08e (patch)
tree6ab3c99c939ed6f795cf76669ed26d2edcf564b2 /src/ui.hh
parentf8ec6ac86bcc3b9edda3b5edc30d436c3dae839a (diff)
Made a brand new CustTabs class (to allow fine control of tabs).
Diffstat (limited to 'src/ui.hh')
-rw-r--r--src/ui.hh8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ui.hh b/src/ui.hh
index b2c69f8e..053e85d9 100644
--- a/src/ui.hh
+++ b/src/ui.hh
@@ -35,7 +35,7 @@ typedef enum {
// Private classes
class CustProgressBox;
-class CustTabGroup;
+class CustTabs;
// Class definition ----------------------------------------------------------
@@ -115,7 +115,7 @@ public:
// UI class definition -------------------------------------------------------
//
class UI : public Fl_Pack {
- CustTabGroup *Tabs;
+ CustTabs *Tabs;
char *TabTooltip;
Fl_Group *TopGroup;
@@ -172,8 +172,8 @@ public:
Fl_Widget *fullscreen_button() { return FullScreen; }
void fullscreen_toggle() { FullScreen->do_callback(); }
- CustTabGroup *tabs() { return Tabs; }
- void tabs(CustTabGroup *tabs) { Tabs = tabs; }
+ CustTabs *tabs() { return Tabs; }
+ void tabs(CustTabs *tabs) { Tabs = tabs; }
int pointerOnLink() { return PointerOnLink; }
void pointerOnLink(int flag) { PointerOnLink = flag; }