fix var names. type -> type_. see #4403
This commit is contained in:
parent
ecba68961d
commit
4f55c1826a
1 changed files with 9 additions and 9 deletions
|
@ -1084,15 +1084,15 @@ May be useful some day in the future?'''
|
||||||
elif self.mode == self.ONE_MSG_WINDOW_PERACCT:
|
elif self.mode == self.ONE_MSG_WINDOW_PERACCT:
|
||||||
acct = msg_win.account
|
acct = msg_win.account
|
||||||
elif self.mode == self.ONE_MSG_WINDOW_PERTYPE:
|
elif self.mode == self.ONE_MSG_WINDOW_PERTYPE:
|
||||||
type = msg_win.type
|
type_ = msg_win.type
|
||||||
pos_x_key = type + '-msgwin-x-position'
|
pos_x_key = type_ + '-msgwin-x-position'
|
||||||
pos_y_key = type + '-msgwin-y-position'
|
pos_y_key = type_ + '-msgwin-y-position'
|
||||||
size_width_key = type + '-msgwin-width'
|
size_width_key = type_ + '-msgwin-width'
|
||||||
size_height_key = type + '-msgwin-height'
|
size_height_key = type_ + '-msgwin-height'
|
||||||
elif self.mode == self.ONE_MSG_WINDOW_NEVER:
|
elif self.mode == self.ONE_MSG_WINDOW_NEVER:
|
||||||
type = msg_win.type
|
type_ = msg_win.type
|
||||||
size_width_key = type + '-msgwin-width'
|
size_width_key = type_ + '-msgwin-width'
|
||||||
size_height_key = type + '-msgwin-height'
|
size_height_key = type_ + '-msgwin-height'
|
||||||
elif self.mode == self.ONE_MSG_WINDOW_ALWAYS_WITH_ROSTER:
|
elif self.mode == self.ONE_MSG_WINDOW_ALWAYS_WITH_ROSTER:
|
||||||
# Ignore any hpaned width
|
# Ignore any hpaned width
|
||||||
width = msg_win.notebook.allocation.width
|
width = msg_win.notebook.allocation.width
|
||||||
|
|
Loading…
Add table
Reference in a new issue