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
91f1a770
Commit
91f1a770
authored
Oct 14, 2016
by
Dan Pascu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
No longer set window icon text as it was deprectated in Qt5
parent
31570de4
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
0 additions
and
6 deletions
+0
-6
accounts.py
blink/accounts.py
+0
-1
contacts.py
blink/contacts.py
+0
-1
mainwindow.py
blink/mainwindow.py
+0
-1
preferences.py
blink/preferences.py
+0
-1
sessions.py
blink/sessions.py
+0
-2
No files found.
blink/accounts.py
View file @
91f1a770
...
...
@@ -680,7 +680,6 @@ class ServerToolsWindow(base_class, ui_class):
with
Resources
.
directory
:
self
.
setupUi
()
self
.
setWindowTitle
(
'Blink Server Tools'
)
self
.
setWindowIconText
(
'Server Tools'
)
self
.
setWindowIcon
(
QIcon
(
Resources
.
get
(
'icons/blink48.png'
)))
self
.
model
=
model
self
.
model
.
rowsInserted
.
connect
(
self
.
_SH_ModelChanged
)
...
...
blink/contacts.py
View file @
91f1a770
...
...
@@ -687,7 +687,6 @@ class GoogleAuthorizationView(QWebView):
super
(
GoogleAuthorizationView
,
self
)
.
__init__
(
parent
)
self
.
email
=
None
self
.
setWindowTitle
(
'Blink Google Authorization'
)
self
.
setWindowIconText
(
'Blink Google Authorization'
)
self
.
setWindowIcon
(
QIcon
(
Resources
.
get
(
'icons/blink48.png'
)))
self
.
selectionChanged
.
connect
(
self
.
_SH_SelectionChanged
)
self
.
titleChanged
.
connect
(
self
.
_SH_TitleChanged
)
...
...
blink/mainwindow.py
View file @
91f1a770
...
...
@@ -70,7 +70,6 @@ class MainWindow(base_class, ui_class):
self
.
setupUi
()
self
.
setWindowTitle
(
'Blink'
)
self
.
setWindowIconText
(
'Blink'
)
geometry
=
QSettings
()
.
value
(
"main_window/geometry"
)
if
geometry
:
...
...
blink/preferences.py
View file @
91f1a770
...
...
@@ -190,7 +190,6 @@ class PreferencesWindow(base_class, ui_class):
self
.
setupUi
()
self
.
setWindowTitle
(
'Blink Preferences'
)
self
.
setWindowIconText
(
'Blink Preferences'
)
self
.
account_list
.
setModel
(
account_model
)
self
.
delete_account_button
.
setEnabled
(
False
)
...
...
blink/sessions.py
View file @
91f1a770
...
...
@@ -5192,11 +5192,9 @@ class IncomingRequest(QObject):
if
proposal
:
self
.
dialog
.
setWindowTitle
(
u'Incoming Session Update'
)
self
.
dialog
.
setWindowIconText
(
u'Incoming Session Update'
)
self
.
dialog
.
busy_button
.
hide
()
else
:
self
.
dialog
.
setWindowTitle
(
u'Incoming Session Request'
)
self
.
dialog
.
setWindowIconText
(
u'Incoming Session Request'
)
address
=
u'
%
s@
%
s'
%
(
session
.
remote_identity
.
uri
.
user
,
session
.
remote_identity
.
uri
.
host
)
self
.
dialog
.
uri_label
.
setText
(
address
)
self
.
dialog
.
username_label
.
setText
(
contact
.
name
or
session
.
remote_identity
.
display_name
or
address
)
...
...
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