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
123003f6
Commit
123003f6
authored
Nov 07, 2013
by
Dan Pascu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Renamed class attribute
parent
e3659d49
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
__init__.py
blink/__init__.py
+5
-5
No files found.
blink/__init__.py
View file @
123003f6
...
@@ -100,7 +100,7 @@ class Blink(QApplication):
...
@@ -100,7 +100,7 @@ class Blink(QApplication):
def
__init__
(
self
):
def
__init__
(
self
):
super
(
Blink
,
self
)
.
__init__
(
sys
.
argv
)
super
(
Blink
,
self
)
.
__init__
(
sys
.
argv
)
self
.
setAttribute
(
Qt
.
AA_DontShowIconsInMenus
,
False
)
self
.
setAttribute
(
Qt
.
AA_DontShowIconsInMenus
,
False
)
self
.
application
=
SIPApplication
()
self
.
sip_
application
=
SIPApplication
()
self
.
first_run
=
False
self
.
first_run
=
False
self
.
setOrganizationDomain
(
"ag-projects.com"
)
self
.
setOrganizationDomain
(
"ag-projects.com"
)
...
@@ -136,8 +136,8 @@ class Blink(QApplication):
...
@@ -136,8 +136,8 @@ class Blink(QApplication):
call_later
(
self
.
_initialize_sipsimple
)
# initialize sipsimple after the qt event loop is started
call_later
(
self
.
_initialize_sipsimple
)
# initialize sipsimple after the qt event loop is started
self
.
exec_
()
self
.
exec_
()
self
.
update_manager
.
shutdown
()
self
.
update_manager
.
shutdown
()
self
.
application
.
stop
()
self
.
sip_
application
.
stop
()
self
.
application
.
thread
.
join
()
self
.
sip_
application
.
thread
.
join
()
log_manager
=
LogManager
()
log_manager
=
LogManager
()
log_manager
.
stop
()
log_manager
.
stop
()
...
@@ -259,7 +259,7 @@ class Blink(QApplication):
...
@@ -259,7 +259,7 @@ class Blink(QApplication):
if
not
os
.
path
.
exists
(
ApplicationData
.
get
(
'config'
)):
if
not
os
.
path
.
exists
(
ApplicationData
.
get
(
'config'
)):
self
.
first_run
=
True
self
.
first_run
=
True
notification_center
=
NotificationCenter
()
notification_center
=
NotificationCenter
()
notification_center
.
add_observer
(
self
,
sender
=
self
.
application
)
notification_center
.
add_observer
(
self
,
sender
=
self
.
sip_
application
)
self
.
application
.
start
(
FileStorage
(
ApplicationData
.
directory
))
self
.
sip_
application
.
start
(
FileStorage
(
ApplicationData
.
directory
))
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