Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
luyikei
VLMC
Commits
ce11a343
Commit
ce11a343
authored
Jun 21, 2009
by
Ludovic Fauvet
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make string translatable
parent
49268260
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
src/gui/GraphicsMovieItem.cpp
src/gui/GraphicsMovieItem.cpp
+4
-4
No files found.
src/gui/GraphicsMovieItem.cpp
View file @
ce11a343
...
...
@@ -30,10 +30,10 @@
GraphicsMovieItem
::
GraphicsMovieItem
(
Media
*
media
)
:
m_media
(
media
),
m_width
(
0
),
m_height
(
0
)
{
QTime
length
=
QTime
().
addMSecs
(
media
->
getLength
()
);
QString
tooltip
(
"<p style='white-space:pre'><b>Name:</b>
"
+
media
->
getFileInfo
()
->
fileName
()
+
"<br><b>Length:</b> "
+
length
.
toString
(
"hh:mm:ss.zzz"
)
);
QString
tooltip
(
tr
(
"<p style='white-space:pre'><b>Name:</b>
%1"
"<br><b>Length:</b> %2"
)
.
arg
(
media
->
getFileInfo
()
->
fileName
()
)
.
arg
(
length
.
toString
(
"hh:mm:ss.zzz"
)
)
);
setToolTip
(
tooltip
);
}
...
...
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