From 9134a1e613bc91fd8f9955d87ce0002ae3594e13 Mon Sep 17 00:00:00 2001 From: Chris Connett Date: Sun, 22 Jan 2017 23:27:55 -0500 Subject: [PATCH] Grammar fix --- src/Gui/ViewProviderGroupExtension.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Gui/ViewProviderGroupExtension.cpp b/src/Gui/ViewProviderGroupExtension.cpp index d1d234a62..78aecec39 100644 --- a/src/Gui/ViewProviderGroupExtension.cpp +++ b/src/Gui/ViewProviderGroupExtension.cpp @@ -183,11 +183,11 @@ void ViewProviderGroupExtension::extensionHide(void) { bool ViewProviderGroupExtension::extensionOnDelete(const std::vector< std::string >& ) { auto* group = getExtendedViewProvider()->getObject()->getExtensionByType(); - // 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?") .arg ( QString::fromUtf8 ( getExtendedViewProvider()->getObject()->Label.getValue () ) ), QMessageBox::Yes | QMessageBox::No, QMessageBox::Yes );