Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
F
flatpak-qt-creator
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Environments
Packages & Registries
Packages & Registries
Container Registry
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
Marco Bubke
flatpak-qt-creator
Commits
e78b8cf4
Commit
e78b8cf4
authored
Oct 08, 2010
by
Tobias Hunger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
VCS: String update
String update as suggested by Leena.
parent
eb9b15be
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
src/plugins/cvs/cvsplugin.cpp
src/plugins/cvs/cvsplugin.cpp
+1
-1
src/plugins/git/gitplugin.cpp
src/plugins/git/gitplugin.cpp
+1
-1
src/plugins/subversion/subversionplugin.cpp
src/plugins/subversion/subversionplugin.cpp
+1
-1
No files found.
src/plugins/cvs/cvsplugin.cpp
View file @
e78b8cf4
...
...
@@ -629,7 +629,7 @@ void CVSPlugin::revertAll()
const
VCSBase
::
VCSBasePluginState
state
=
currentState
();
QTC_ASSERT
(
state
.
hasTopLevel
(),
return
)
const
QString
title
=
tr
(
"Revert repository"
);
if
(
!
messageBoxQuestion
(
title
,
tr
(
"
Would you like to revert all
changes to the repository?"
)))
if
(
!
messageBoxQuestion
(
title
,
tr
(
"
Revert all pending
changes to the repository?"
)))
return
;
QStringList
args
;
args
<<
QLatin1String
(
"update"
)
<<
QLatin1String
(
"-C"
)
<<
state
.
topLevel
();
...
...
src/plugins/git/gitplugin.cpp
View file @
e78b8cf4
...
...
@@ -622,7 +622,7 @@ void GitPlugin::undoRepositoryChanges()
{
const
VCSBase
::
VCSBasePluginState
state
=
currentState
();
QTC_ASSERT
(
state
.
hasTopLevel
(),
return
)
const
QString
msg
=
tr
(
"
Would you like to r
evert all pending changes to the repository
\n
%1?"
).
arg
(
QDir
::
toNativeSeparators
(
state
.
topLevel
()));
const
QString
msg
=
tr
(
"
R
evert all pending changes to the repository
\n
%1?"
).
arg
(
QDir
::
toNativeSeparators
(
state
.
topLevel
()));
const
QMessageBox
::
StandardButton
answer
=
QMessageBox
::
question
(
m_core
->
mainWindow
(),
tr
(
"Revert"
),
msg
,
...
...
src/plugins/subversion/subversionplugin.cpp
View file @
e78b8cf4
...
...
@@ -632,7 +632,7 @@ void SubversionPlugin::revertAll()
const
VCSBase
::
VCSBasePluginState
state
=
currentState
();
QTC_ASSERT
(
state
.
hasTopLevel
(),
return
)
const
QString
title
=
tr
(
"Revert repository"
);
if
(
QMessageBox
::
warning
(
0
,
title
,
tr
(
"
Would you like to revert all
changes to the repository?"
),
if
(
QMessageBox
::
warning
(
0
,
title
,
tr
(
"
Revert all pending
changes to the repository?"
),
QMessageBox
::
Yes
,
QMessageBox
::
No
)
==
QMessageBox
::
No
)
return
;
// NoteL: Svn "revert ." doesn not work.
...
...
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