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
15a009a6
Commit
15a009a6
authored
9 years ago
by
Edric Milaret
Browse files
Options
Downloads
Patches
Plain Diff
settings: fix account being modified at load time
Issue: #78824 Change-Id: Ifef04d3114e349dffe8037c4c81275dcf5940b45
parent
194bda28
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
accountdetails.cpp
+7
-5
7 additions, 5 deletions
accountdetails.cpp
with
7 additions
and
5 deletions
accountdetails.cpp
+
7
−
5
View file @
15a009a6
...
@@ -53,11 +53,6 @@ AccountDetails::AccountDetails(QWidget *parent) :
...
@@ -53,11 +53,6 @@ AccountDetails::AccountDetails(QWidget *parent) :
ui
->
lrcfg_username
->
setAlignment
(
Qt
::
AlignCenter
);
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_tlsCaListCertificate
,
SIGNAL
(
clicked
(
bool
)),
this
,
SLOT
(
onCertButtonClicked
()));
connect
(
ui
->
lrcfg_tlsCertificate
,
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
()));
connect
(
ui
->
lrcfg_tlsPrivateKeyCertificate
,
SIGNAL
(
clicked
(
bool
)),
this
,
SLOT
(
onCertButtonClicked
()));
...
@@ -71,6 +66,9 @@ AccountDetails::~AccountDetails()
...
@@ -71,6 +66,9 @@ AccountDetails::~AccountDetails()
void
void
AccountDetails
::
reloadCodec
(
CodecType
type
)
AccountDetails
::
reloadCodec
(
CodecType
type
)
{
{
ui
->
audioCodecView
->
disconnect
();
ui
->
videoCodecView
->
disconnect
();
auto
selectedIdx
=
codecModel_
->
selectionModel
()
->
currentIndex
();
auto
selectedIdx
=
codecModel_
->
selectionModel
()
->
currentIndex
();
if
(
type
!=
CodecType
::
VIDEO
)
{
if
(
type
!=
CodecType
::
VIDEO
)
{
...
@@ -138,6 +136,10 @@ AccountDetails::reloadCodec(CodecType type)
...
@@ -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
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