From d1ca0f4ed0e30394ce6759a20d4896651dd43051 Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Thu, 30 Apr 2015 05:32:26 +0300 Subject: Bin some pointless comments and reduce some vertical whitespace Bin pointless '// predeclarations' or '// forward declarations' comments. If a programmer doesn't know what a forward declaration is, well, why read C++ source code? Also bin some pointless '// end of namespace foo' comments after namespace blocks just a handful of lines long, and some superfluous vertical whitespace. Change-Id: I2a31c5d73d9b4de8825fb8eb9e7559dbd7303ef9 --- forms/source/xforms/unohelper.hxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'forms/source/xforms/unohelper.hxx') diff --git a/forms/source/xforms/unohelper.hxx b/forms/source/xforms/unohelper.hxx index b2675dca308c..045c63672976 100644 --- a/forms/source/xforms/unohelper.hxx +++ b/forms/source/xforms/unohelper.hxx @@ -21,23 +21,23 @@ #include -// forward declarations namespace com { namespace sun { namespace star { namespace uno { class XInterface; template class Reference; } - namespace beans { class XPropertySet; } + namespace beans { + class XPropertySet; + } } } } - namespace xforms { /** copy the properties from one PropertySet into the next */ void copy( const com::sun::star::uno::Reference& , com::sun::star::uno::Reference& ); -} // namespace +} #endif -- cgit