diff options
author | Mike Kaganski <mike.kaganski@collabora.com> | 2019-04-26 20:57:02 +0200 |
---|---|---|
committer | Mike Kaganski <mike.kaganski@collabora.com> | 2019-04-26 20:58:00 +0200 |
commit | f48aa15c69ae3db9283994216d33d88b85a442d1 (patch) | |
tree | 73f14326719ed337147b984cc5f376d903b54de9 /comphelper/qa | |
parent | 812e6bdf87ed9ab5089c651d7bf17214da91bb16 (diff) |
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>
Diffstat (limited to 'comphelper/qa')
-rw-r--r-- | comphelper/qa/unit/test_guards.cxx | 2 |
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); } |