Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
J
jami-client-windows
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Requirements
Requirements
List
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Analytics
Analytics
Insights
Issue
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
savoirfairelinux
jami-client-windows
Commits
15a009a6
Commit
15a009a6
authored
Aug 10, 2015
by
Edric Milaret
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
settings: fix account being modified at load time
Issue: #78824 Change-Id: Ifef04d3114e349dffe8037c4c81275dcf5940b45
parent
194bda28
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
5 deletions
+7
-5
accountdetails.cpp
accountdetails.cpp
+7
-5
No files found.
accountdetails.cpp
View file @
15a009a6
...
...
@@ -53,11 +53,6 @@ AccountDetails::AccountDetails(QWidget *parent) :
ui
->
lrcfg_username
->
setAlignment
(
Qt
::
AlignCenter
);
connect
(
ui
->
audioCodecView
,
SIGNAL
(
cellChanged
(
int
,
int
)),
this
,
SLOT
(
audio_codec_checked
(
int
,
int
)));
connect
(
ui
->
videoCodecView
,
SIGNAL
(
cellChanged
(
int
,
int
)),
this
,
SLOT
(
video_codec_checked
(
int
,
int
)));
connect
(
ui
->
lrcfg_tlsCaListCertificate
,
SIGNAL
(
clicked
(
bool
)),
this
,
SLOT
(
onCertButtonClicked
()));
connect
(
ui
->
lrcfg_tlsCertificate
,
SIGNAL
(
clicked
(
bool
)),
this
,
SLOT
(
onCertButtonClicked
()));
connect
(
ui
->
lrcfg_tlsPrivateKeyCertificate
,
SIGNAL
(
clicked
(
bool
)),
this
,
SLOT
(
onCertButtonClicked
()));
...
...
@@ -71,6 +66,9 @@ AccountDetails::~AccountDetails()
void
AccountDetails
::
reloadCodec
(
CodecType
type
)
{
ui
->
audioCodecView
->
disconnect
();
ui
->
videoCodecView
->
disconnect
();
auto
selectedIdx
=
codecModel_
->
selectionModel
()
->
currentIndex
();
if
(
type
!=
CodecType
::
VIDEO
)
{
...
...
@@ -138,6 +136,10 @@ AccountDetails::reloadCodec(CodecType type)
}
}
}
connect
(
ui
->
audioCodecView
,
SIGNAL
(
cellChanged
(
int
,
int
)),
this
,
SLOT
(
audio_codec_checked
(
int
,
int
)));
connect
(
ui
->
videoCodecView
,
SIGNAL
(
cellChanged
(
int
,
int
)),
this
,
SLOT
(
video_codec_checked
(
int
,
int
)));
}
void
...
...
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