summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike Kaganski <mike.kaganski@collabora.com>2019-04-26 20:57:02 +0200
committerMike Kaganski <mike.kaganski@collabora.com>2019-04-26 20:58:00 +0200
commitf48aa15c69ae3db9283994216d33d88b85a442d1 (patch)
tree73f14326719ed337147b984cc5f376d903b54de9
parentUpdate git submodules (diff)
downloadcore-f48aa15c69ae3db9283994216d33d88b85a442d1.tar.gz
core-f48aa15c69ae3db9283994216d33d88b85a442d1.zip
Fix a copypaste error in comment
Change-Id: Ic5272fe2e7226c5d6ccbb42c0b22635c2360200c Reviewed-on: https://gerrit.libreoffice.org/71394 Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com> Tested-by: Mike Kaganski <mike.kaganski@collabora.com>
-rw-r--r--comphelper/qa/unit/test_guards.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/comphelper/qa/unit/test_guards.cxx b/comphelper/qa/unit/test_guards.cxx
index 39d8f80e0c68..1d2b5f209daa 100644
--- a/comphelper/qa/unit/test_guards.cxx
+++ b/comphelper/qa/unit/test_guards.cxx
@@ -50,7 +50,7 @@ CPPUNIT_TEST_FIXTURE(CppUnit::TestFixture, test_comphelperGuards)
comphelper::FlagRestorationGuard aGuard(bFlag, false);
CPPUNIT_ASSERT(!bFlag);
}
- // comphelper::FlagGuard must reset flag to initial state on destruction
+ // comphelper::FlagRestorationGuard must reset flag to initial state on destruction
CPPUNIT_ASSERT(bFlag);
}