summaryrefslogtreecommitdiff
path: root/sw/source/ui/vba
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-11-09 08:35:35 +0200
committerNoel Grandin <noel@peralex.com>2015-11-09 08:36:01 +0200
commit4671c3e2944678fa1f3875b13839391d8df49578 (patch)
tree99684e9f0aeb23f93b405c1238f116a347462cc0 /sw/source/ui/vba
parentf045b7cb457e8ca1c0a2b3d3ec08f5fe647542bd (diff)
formatting improvements in sw/
after my recent "com::sun::star->css in sw" commit Change-Id: I2545648fc6f14ea0ebcabbe012e91546cf392b16
Diffstat (limited to 'sw/source/ui/vba')
-rw-r--r--sw/source/ui/vba/vbaapplication.cxx6
-rw-r--r--sw/source/ui/vba/vbaeventshelper.cxx4
-rw-r--r--sw/source/ui/vba/vbafont.cxx4
-rw-r--r--sw/source/ui/vba/vbaglobals.cxx2
4 files changed, 8 insertions, 8 deletions
diff --git a/sw/source/ui/vba/vbaapplication.cxx b/sw/source/ui/vba/vbaapplication.cxx
index a641a87e1ea0..2c23b717a878 100644
--- a/sw/source/ui/vba/vbaapplication.cxx
+++ b/sw/source/ui/vba/vbaapplication.cxx
@@ -38,9 +38,9 @@ using namespace ::ooo;
using namespace ::ooo::vba;
using namespace ::com::sun::star;
-using css::uno::Reference;
-using css::uno::UNO_QUERY_THROW;
-using css::uno::UNO_QUERY;
+using ::com::sun::star::uno::Reference;
+using ::com::sun::star::uno::UNO_QUERY_THROW;
+using ::com::sun::star::uno::UNO_QUERY;
SwVbaApplication::SwVbaApplication( uno::Reference<uno::XComponentContext >& xContext ): SwVbaApplication_BASE( xContext )
{
diff --git a/sw/source/ui/vba/vbaeventshelper.cxx b/sw/source/ui/vba/vbaeventshelper.cxx
index f26e8d945b4d..71e2f99c8a31 100644
--- a/sw/source/ui/vba/vbaeventshelper.cxx
+++ b/sw/source/ui/vba/vbaeventshelper.cxx
@@ -23,13 +23,13 @@
#include <vbahelper/helperdecl.hxx>
using namespace ::com::sun::star;
-using namespace css::script::vba::VBAEventId;
+using namespace ::com::sun::star::script::vba::VBAEventId;
using namespace ::ooo::vba;
SwVbaEventsHelper::SwVbaEventsHelper( uno::Sequence< css::uno::Any > const& aArgs, uno::Reference< uno::XComponentContext > const& xContext ) :
VbaEventsHelperBase( aArgs, xContext )
{
- using namespace css::script::ModuleType;
+ using namespace ::com::sun::star::script::ModuleType;
registerEventHandler( DOCUMENT_NEW, DOCUMENT, "Document_New" );
registerEventHandler( AUTO_NEW, NORMAL, "AutoNew" );
registerEventHandler( DOCUMENT_OPEN, DOCUMENT, "Document_Open" );
diff --git a/sw/source/ui/vba/vbafont.cxx b/sw/source/ui/vba/vbafont.cxx
index 82988820e2b5..0975862fb4e5 100644
--- a/sw/source/ui/vba/vbafont.cxx
+++ b/sw/source/ui/vba/vbafont.cxx
@@ -44,8 +44,8 @@ static MapPair UnderLineTable[] = {
{ word::WdUnderline::wdUnderlineDotted, css::awt::FontUnderline::DOTTED },
{ word::WdUnderline::wdUnderlineThick, css::awt::FontUnderline::BOLDDASH },
{ word::WdUnderline::wdUnderlineDash, css::awt::FontUnderline::DASH },
- { word::WdUnderline::wdUnderlineDotDash, css::awt::FontUnderline::DASHDOT },
- { word::WdUnderline::wdUnderlineDotDotDash, css::awt::FontUnderline::DASHDOTDOT },
+ { word::WdUnderline::wdUnderlineDotDash, css::awt::FontUnderline::DASHDOT },
+ { word::WdUnderline::wdUnderlineDotDotDash, css::awt::FontUnderline::DASHDOTDOT },
{ word::WdUnderline::wdUnderlineWavy, css::awt::FontUnderline::WAVE },
{ word::WdUnderline::wdUnderlineDottedHeavy, css::awt::FontUnderline::BOLDDOTTED },
{ word::WdUnderline::wdUnderlineDashHeavy, css::awt::FontUnderline::BOLDDASH },
diff --git a/sw/source/ui/vba/vbaglobals.cxx b/sw/source/ui/vba/vbaglobals.cxx
index 127d84e6fdb7..bb2859f7d259 100644
--- a/sw/source/ui/vba/vbaglobals.cxx
+++ b/sw/source/ui/vba/vbaglobals.cxx
@@ -27,7 +27,7 @@
#include <cppuhelper/bootstrap.hxx>
#include "vbaapplication.hxx"
using namespace ::com::sun::star;
-using namespace css::uno;
+using namespace ::com::sun::star::uno;
using namespace ::ooo::vba;
SwVbaGlobals::SwVbaGlobals( uno::Sequence< uno::Any > const& aArgs, uno::Reference< uno::XComponentContext >const& rxContext ) : SwVbaGlobals_BASE( uno::Reference< XHelperInterface >(), rxContext, "WordDocumentContext" )