Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Marco Bubke
flatpak-qt-creator
Commits
911e268b
Commit
911e268b
authored
Jul 15, 2010
by
Robert Loehning
Browse files
Fixed tooltip for build progress.
Task-number: QTCREATORBUG-1859
parent
5dd09d00
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/projectexplorer/buildmanager.cpp
View file @
911e268b
...
...
@@ -61,9 +61,9 @@
using
namespace
ProjectExplorer
;
using
namespace
ProjectExplorer
::
Internal
;
static
inline
QString
msgProgress
(
int
n
,
int
total
)
static
inline
QString
msgProgress
(
int
progress
,
int
total
)
{
return
BuildManager
::
tr
(
"Finished %1 of %n build steps"
,
0
,
n
).
arg
(
total
);
return
BuildManager
::
tr
(
"Finished %1 of %n build steps"
,
0
,
total
).
arg
(
progress
);
}
BuildManager
::
BuildManager
(
ProjectExplorerPlugin
*
parent
)
...
...
Write
Preview
Supports
Markdown
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