summaryrefslogtreecommitdiff
path: root/Lib/lib-tk/ScrolledText.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/lib-tk/ScrolledText.py')
-rw-r--r--Lib/lib-tk/ScrolledText.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/lib-tk/ScrolledText.py b/Lib/lib-tk/ScrolledText.py
index a14ae4d296..367aa89ca6 100644
--- a/Lib/lib-tk/ScrolledText.py
+++ b/Lib/lib-tk/ScrolledText.py
@@ -24,11 +24,11 @@ class ScrolledText(Text):
if type(k) == ClassType or k == 'name':
fcnf[k] = cnf[k]
del cnf[k]
- self.frame = apply(Frame, (master,), fcnf)
+ self.frame = Frame(master, **fcnf)
self.vbar = Scrollbar(self.frame, name='vbar')
self.vbar.pack(side=RIGHT, fill=Y)
cnf['name'] = 'text'
- apply(Text.__init__, (self, self.frame), cnf)
+ Text.__init__(self, self.frame, **cnf)
self.pack(side=LEFT, fill=BOTH, expand=1)
self['yscrollcommand'] = self.vbar.set
self.vbar['command'] = self.yview