Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linphone-desktop
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
Administrator
linphone-desktop
Commits
2784afb6
Commit
2784afb6
authored
Jun 19, 2017
by
Ronan Abhamon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix(Colors): override colors at core creation
parent
af69ff51
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
0 deletions
+7
-0
Colors.cpp
src/components/other/colors/Colors.cpp
+4
-0
Colors.hpp
src/components/other/colors/Colors.hpp
+3
-0
No files found.
src/components/other/colors/Colors.cpp
View file @
2784afb6
...
@@ -34,6 +34,10 @@ using namespace std;
...
@@ -34,6 +34,10 @@ using namespace std;
// =============================================================================
// =============================================================================
Colors
::
Colors
(
QObject
*
parent
)
:
QObject
(
parent
)
{
Colors
::
Colors
(
QObject
*
parent
)
:
QObject
(
parent
)
{
QObject
::
connect
(
CoreManager
::
getInstance
(),
&
CoreManager
::
coreCreated
,
this
,
&
Colors
::
overrideColors
);
}
void
Colors
::
overrideColors
()
{
shared_ptr
<
linphone
::
Config
>
config
=
CoreManager
::
getInstance
()
->
getCore
()
->
getConfig
();
shared_ptr
<
linphone
::
Config
>
config
=
CoreManager
::
getInstance
()
->
getCore
()
->
getConfig
();
const
QMetaObject
*
info
=
metaObject
();
const
QMetaObject
*
info
=
metaObject
();
...
...
src/components/other/colors/Colors.hpp
View file @
2784afb6
...
@@ -120,6 +120,9 @@ signals:
...
@@ -120,6 +120,9 @@ signals:
void
colorTzChanged
(
const
QColor
&
color
);
void
colorTzChanged
(
const
QColor
&
color
);
void
colorTerrorChanged
(
const
QColor
&
color
);
void
colorTerrorChanged
(
const
QColor
&
color
);
private:
void
overrideColors
();
};
};
// -----------------------------------------------------------------------------
// -----------------------------------------------------------------------------
...
...
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