Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vmj-qt
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kulya
vmj-qt
Commits
f2f7675e
Commit
f2f7675e
authored
Apr 10, 2014
by
Dan Pascu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Renamed action signal handler names for consistency
parent
28225373
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
mainwindow.py
blink/mainwindow.py
+4
-4
No files found.
blink/mainwindow.py
View file @
f2f7675e
...
...
@@ -178,8 +178,8 @@ class MainWindow(base_class, ui_class):
self
.
manage_accounts_action
.
triggered
.
connect
(
self
.
preferences_window
.
show_for_accounts
)
self
.
help_action
.
triggered
.
connect
(
partial
(
QDesktopServices
.
openUrl
,
QUrl
(
u'http://icanblink.com/help-qt.phtml'
)))
self
.
preferences_action
.
triggered
.
connect
(
self
.
preferences_window
.
show
)
self
.
auto_accept_chat_action
.
triggered
.
connect
(
self
.
_AH_AutoAcceptChatTriggered
)
self
.
answering_machine_action
.
triggered
.
connect
(
self
.
_AH_EnableAnsweringMachineTriggered
)
self
.
auto_accept_chat_action
.
triggered
.
connect
(
self
.
_AH_AutoAcceptChat
Action
Triggered
)
self
.
answering_machine_action
.
triggered
.
connect
(
self
.
_AH_EnableAnsweringMachine
Action
Triggered
)
self
.
release_notes_action
.
triggered
.
connect
(
partial
(
QDesktopServices
.
openUrl
,
QUrl
(
u'http://icanblink.com/changelog-qt.phtml'
)))
self
.
quit_action
.
triggered
.
connect
(
self
.
_AH_QuitActionTriggered
)
...
...
@@ -323,12 +323,12 @@ class MainWindow(base_class, ui_class):
settings
.
audio
.
output_device
=
action
.
data
()
settings
.
save
()
def
_AH_AutoAcceptChatTriggered
(
self
,
checked
):
def
_AH_AutoAcceptChat
Action
Triggered
(
self
,
checked
):
settings
=
SIPSimpleSettings
()
settings
.
chat
.
auto_accept
=
checked
settings
.
save
()
def
_AH_EnableAnsweringMachineTriggered
(
self
,
checked
):
def
_AH_EnableAnsweringMachine
Action
Triggered
(
self
,
checked
):
settings
=
SIPSimpleSettings
()
settings
.
answering_machine
.
enabled
=
checked
settings
.
save
()
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment