Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-gpu
Commits
8aa361fc
Commit
8aa361fc
authored
Mar 11, 2009
by
Rémi Duraffort
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
qt4_sout: use references for const QString.
parent
265371e9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
modules/gui/qt4/dialogs/sout.hpp
modules/gui/qt4/dialogs/sout.hpp
+6
-6
No files found.
modules/gui/qt4/dialogs/sout.hpp
View file @
8aa361fc
...
@@ -42,7 +42,7 @@ class QTextEdit;
...
@@ -42,7 +42,7 @@ class QTextEdit;
class
SoutMrl
class
SoutMrl
{
{
public:
public:
SoutMrl
(
const
QString
head
=
""
)
SoutMrl
(
const
QString
&
head
=
""
)
{
{
mrl
=
head
;
mrl
=
head
;
b_first
=
true
;
b_first
=
true
;
...
@@ -54,7 +54,7 @@ public:
...
@@ -54,7 +54,7 @@ public:
return
mrl
;
return
mrl
;
}
}
void
begin
(
QString
module
)
void
begin
(
const
QString
&
module
)
{
{
if
(
!
b_first
)
if
(
!
b_first
)
mrl
+=
":"
;
mrl
+=
":"
;
...
@@ -68,7 +68,7 @@ public:
...
@@ -68,7 +68,7 @@ public:
if
(
b_has_bracket
)
if
(
b_has_bracket
)
mrl
+=
"}"
;
mrl
+=
"}"
;
}
}
void
option
(
const
QString
option
,
const
QString
value
=
""
)
void
option
(
const
QString
&
option
,
const
QString
&
value
=
""
)
{
{
if
(
!
b_has_bracket
)
if
(
!
b_has_bracket
)
mrl
+=
"{"
;
mrl
+=
"{"
;
...
@@ -88,16 +88,16 @@ public:
...
@@ -88,16 +88,16 @@ public:
}
}
}
}
}
}
void
option
(
const
QString
name
,
const
int
i_value
,
const
int
i_precision
=
10
)
void
option
(
const
QString
&
name
,
const
int
i_value
,
const
int
i_precision
=
10
)
{
{
option
(
name
,
QString
::
number
(
i_value
,
i_precision
)
);
option
(
name
,
QString
::
number
(
i_value
,
i_precision
)
);
}
}
void
option
(
const
QString
name
,
const
double
f_value
)
void
option
(
const
QString
&
name
,
const
double
f_value
)
{
{
option
(
name
,
QString
::
number
(
f_value
)
);
option
(
name
,
QString
::
number
(
f_value
)
);
}
}
void
option
(
const
QString
name
,
const
QString
base
,
const
int
i_value
,
const
int
i_precision
=
10
)
void
option
(
const
QString
&
name
,
const
QString
&
base
,
const
int
i_value
,
const
int
i_precision
=
10
)
{
{
option
(
name
,
base
+
":"
+
QString
::
number
(
i_value
,
i_precision
)
);
option
(
name
,
base
+
":"
+
QString
::
number
(
i_value
,
i_precision
)
);
}
}
...
...
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