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
75369351
Commit
75369351
authored
Aug 02, 2007
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt4 - Strings changes by tonsofpcs.
parent
5e4dc54c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
+4
-3
modules/gui/qt4/dialogs/help.cpp
modules/gui/qt4/dialogs/help.cpp
+3
-2
modules/gui/qt4/dialogs/interaction.cpp
modules/gui/qt4/dialogs/interaction.cpp
+1
-1
No files found.
modules/gui/qt4/dialogs/help.cpp
View file @
75369351
...
...
@@ -72,7 +72,8 @@ AboutDialog::AboutDialog( intf_thread_t *_p_intf) : QVLCFrame( _p_intf )
closeButton
->
setSizePolicy
(
QSizePolicy
::
Minimum
,
QSizePolicy
::
Minimum
);
closeButton
->
setDefault
(
true
);
QLabel
*
introduction
=
new
QLabel
(
qtr
(
"Infos about VLC media player"
)
);
QLabel
*
introduction
=
new
QLabel
(
qtr
(
"Information about VLC media player"
)
);
layout
->
addWidget
(
introduction
,
0
,
0
,
1
,
2
);
layout
->
addWidget
(
tab
,
1
,
0
,
1
,
2
);
...
...
@@ -91,7 +92,7 @@ AboutDialog::AboutDialog( intf_thread_t *_p_intf) : QVLCFrame( _p_intf )
thanksEdit
->
setReadOnly
(
true
);
/* add the tabs to the Tabwidget */
tab
->
addTab
(
NULL
,
qtr
(
"
Information
"
)
);
tab
->
addTab
(
NULL
,
qtr
(
"
General Info
"
)
);
tab
->
addTab
(
NULL
,
qtr
(
"Authors"
)
);
tab
->
addTab
(
thanksEdit
,
qtr
(
"Thanks"
)
);
tab
->
addTab
(
licenseEdit
,
qtr
(
"Distribution License"
)
);
...
...
modules/gui/qt4/dialogs/interaction.cpp
View file @
75369351
...
...
@@ -176,7 +176,7 @@ void InteractionDialog::update()
{
assert
(
progressBar
);
progressBar
->
setValue
(
(
int
)(
p_dialog
->
val
.
f_float
*
1000
)
);
fprintf
(
stderr
,
"Setting progress to %i
\n
"
,
progressBar
->
value
()
);
msg_Err
(
p_intf
,
"Setting progress to %i
\n
"
,
progressBar
->
value
()
);
}
}
...
...
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