Skip to content

Commit

Permalink
Merge pull request #468 from cconnett/master
Browse files Browse the repository at this point in the history
Grammar fix
  • Loading branch information
wwmayer committed Jan 23, 2017
2 parents 9f859a0 + 9134a1e commit 654da13
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Gui/ViewProviderGroupExtension.cpp
Expand Up @@ -183,11 +183,11 @@ void ViewProviderGroupExtension::extensionHide(void) {
bool ViewProviderGroupExtension::extensionOnDelete(const std::vector< std::string >& ) {

auto* group = getExtendedViewProvider()->getObject()->getExtensionByType<App::GroupExtension>();
// If the group is nonempty ask the user if he wants to delete it's content
// If the group is nonempty ask the user if he wants to delete its content
if ( group->Group.getSize () ) {
QMessageBox::StandardButton choice =
QMessageBox::question ( 0, QObject::tr ( "Delete group content?" ),
QObject::tr ( "The %1 is not empty, delete it's content as well?")
QObject::tr ( "The %1 is not empty, delete its content as well?")

This comment has been minimized.

Copy link
@agryson

agryson Jan 23, 2017

Contributor

If we want to be picky, it should read:
"The %1 is not empty, delete its contents as well?"

('s' on contents)

.arg ( QString::fromUtf8 ( getExtendedViewProvider()->getObject()->Label.getValue () ) ),
QMessageBox::Yes | QMessageBox::No, QMessageBox::Yes );

Expand Down

0 comments on commit 654da13

Please sign in to comment.