Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
jami-daemon
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
savoirfairelinux
jami-daemon
Commits
96bc3a75
Commit
96bc3a75
authored
13 years ago
by
Emmanuel Lepage
Browse files
Options
Downloads
Patches
Plain Diff
[ #7887 ] 7% faster load time
parent
8b4de96f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
kde/src/SFLPhoneView.cpp
+4
-2
4 additions, 2 deletions
kde/src/SFLPhoneView.cpp
with
4 additions
and
2 deletions
kde/src/SFLPhoneView.cpp
+
4
−
2
View file @
96bc3a75
...
...
@@ -61,7 +61,7 @@ SFLPhoneView::SFLPhoneView(QWidget *parent)
ConfigurationManagerInterface
&
configurationManager
=
ConfigurationManagerInterfaceSingleton
::
getInstance
();
errorWindow
=
new
QErrorMessage
(
this
);
callTreeModel
->
setTitle
(
i18n
(
"Calls"
));
QPalette
pal
=
QPalette
(
palette
());
...
...
@@ -110,6 +110,8 @@ void SFLPhoneView::loadWindow()
///Return the error window
QErrorMessage
*
SFLPhoneView
::
getErrorWindow
()
{
if
(
!
errorWindow
)
errorWindow
=
new
QErrorMessage
(
this
);
return
errorWindow
;
}
...
...
@@ -228,7 +230,7 @@ void SFLPhoneView::action(Call* call, call_action action)
call
->
actionPerformed
(
action
);
}
catch
(
const
char
*
msg
)
{
e
rrorWindow
->
showMessage
(
QString
(
msg
));
getE
rrorWindow
()
->
showMessage
(
QString
(
msg
));
}
updateWindowCallState
();
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment