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
f1b04fcf
Commit
f1b04fcf
authored
Sep 18, 2010
by
Dan Pascu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed pointless call to super
parent
a261d3da
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
contacts.py
blink/contacts.py
+2
-2
No files found.
blink/contacts.py
View file @
f1b04fcf
...
...
@@ -515,7 +515,7 @@ class GoogleContactsDialog(base_class, ui_class):
self
.
username_editor
.
setEnabled
(
True
)
self
.
username_editor
.
setText
(
settings
.
google_contacts
.
username
or
u''
)
self
.
password_editor
.
setText
(
u''
)
s
uper
(
GoogleContactsDialog
,
self
)
.
show
()
s
elf
.
show
()
def
open_for_incorrect_password
(
self
):
red
=
'#cc0000'
...
...
@@ -523,7 +523,7 @@ class GoogleContactsDialog(base_class, ui_class):
self
.
username_editor
.
setEnabled
(
False
)
self
.
username_editor
.
setText
(
settings
.
google_contacts
.
username
)
self
.
status_label
.
value
=
Status
(
'Error authenticating with Google. Please enter your password:'
,
color
=
red
)
s
uper
(
GoogleContactsDialog
,
self
)
.
show
()
s
elf
.
show
()
@
run_in_green_thread
def
_authorize_google_account
(
self
):
...
...
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