From ba233e87efddf0a6751b35784dca1c805364ff3b Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Wed, 11 Feb 2015 13:20:49 +0200 Subject: remove unnecessary parenthesis in return statements found with $ git grep -lP 'return\s*\(\s*\w+\s*\)\s*;' Change-Id: Ic51606877a9edcadeb647c5bf17bc928b69ab60e --- UnoControls/source/controls/progressbar.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'UnoControls/source/controls') diff --git a/UnoControls/source/controls/progressbar.cxx b/UnoControls/source/controls/progressbar.cxx index 9af003a1a1e0..6ff24bed4704 100644 --- a/UnoControls/source/controls/progressbar.cxx +++ b/UnoControls/source/controls/progressbar.cxx @@ -260,7 +260,7 @@ sal_Int32 SAL_CALL ProgressBar::getValue () throw( RuntimeException, std::except // Ready for multithreading MutexGuard aGuard (m_aMutex); - return ( m_nValue ); + return m_nValue; } // XWindow -- cgit v1.2.3