Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
J
jami-client-windows
Manage
Activity
Members
Plan
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Analyze
Contributor analytics
Repository analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
savoirfairelinux
jami-client-windows
Commits
12c404bd
Commit
12c404bd
authored
Sep 11, 2019
by
Andreas Traczyk
Browse files
Options
Downloads
Patches
Plain Diff
fix: catch exception on invalid account creation
Change-Id: Iafffd0d256e261f80252a14732afee8c3508f28c
parent
6815714a
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
callwidget.cpp
+19
-13
19 additions, 13 deletions
callwidget.cpp
with
19 additions
and
13 deletions
callwidget.cpp
+
19
−
13
View file @
12c404bd
...
...
@@ -1232,6 +1232,8 @@ CallWidget::updateConversationForNewContact(const std::string& convUid)
void
CallWidget
::
updateSmartList
()
{
try
{
if
(
!
ui
->
smartList
->
model
())
{
smartListModel_
.
reset
(
new
SmartListModel
(
LRCInstance
::
getCurrAccId
(),
this
));
ui
->
smartList
->
setModel
(
smartListModel_
.
get
());
...
...
@@ -1246,6 +1248,10 @@ CallWidget::updateSmartList()
SIGNAL
(
selectionChanged
(
QItemSelection
,
QItemSelection
)),
this
,
SLOT
(
smartListSelectionChanged
(
QItemSelection
,
QItemSelection
)));
}
catch
(...)
{
qWarning
()
<<
"No account selected!"
;
return
;
}
}
void
...
...
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