summaryrefslogtreecommitdiff
path: root/ext/tk/lib/tkextlib/tile/tnotebook.rb
diff options
context:
space:
mode:
Diffstat (limited to 'ext/tk/lib/tkextlib/tile/tnotebook.rb')
-rw-r--r--ext/tk/lib/tkextlib/tile/tnotebook.rb15
1 files changed, 5 insertions, 10 deletions
diff --git a/ext/tk/lib/tkextlib/tile/tnotebook.rb b/ext/tk/lib/tkextlib/tile/tnotebook.rb
index c693d5ce2b..47338a9f9d 100644
--- a/ext/tk/lib/tkextlib/tile/tnotebook.rb
+++ b/ext/tk/lib/tkextlib/tile/tnotebook.rb
@@ -45,19 +45,14 @@ class Tk::Tile::TNotebook < TkWindow
include Tk::Tile::TileWidget
- TkCommandNames = ['tnotebook'.freeze].freeze
+ if Tk::Tile::USE_TTK_NAMESPACE
+ TkCommandNames = ['::ttk::notebook'.freeze].freeze
+ else
+ TkCommandNames = ['::tnotebook'.freeze].freeze
+ end
WidgetClassName = 'TNotebook'.freeze
WidgetClassNames[WidgetClassName] = self
- def create_self(keys)
- if keys and keys != None
- tk_call_without_enc('tnotebook', @path, *hash_kv(keys, true))
- else
- tk_call_without_enc('tnotebook', @path)
- end
- end
- private :create_self
-
def enable_traversal()
tk_call_without_end('tile::enableNotebookTraversal', @path)
self