diff options
author | Valentin Kettner <vakevk+libreoffice@gmail.com> | 2014-05-27 13:55:31 +0200 |
---|---|---|
committer | Valentin Kettner <vakevk+libreoffice@gmail.com> | 2014-06-03 19:12:03 +0200 |
commit | 4269e3a7435b45cbbcd45d959e1e8c8e761a94a0 (patch) | |
tree | c78a7cdc96d10f10868709b59bb0c2848099e0f5 /sw/source/uibase/uiview/swcli.cxx | |
parent | b7dd4ad818be23aae8163cab760b5edc4f7eaaf3 (diff) |
Changed DocumentDeviceManager includes to IDocumentDeviceAccess.
In places other than sw/core/
Change-Id: Ie1b67f58cf7777240d9db6a867cd33a7a1cbbcaf
Diffstat (limited to 'sw/source/uibase/uiview/swcli.cxx')
-rw-r--r-- | sw/source/uibase/uiview/swcli.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/uibase/uiview/swcli.cxx b/sw/source/uibase/uiview/swcli.cxx index e54aeccac648..71b57499ddb2 100644 --- a/sw/source/uibase/uiview/swcli.cxx +++ b/sw/source/uibase/uiview/swcli.cxx @@ -20,7 +20,7 @@ #include <com/sun/star/embed/NoVisualAreaSizeException.hpp> #include <wrtsh.hxx> #include <doc.hxx> -#include <DocumentSettingManager.hxx> +#include <IDocumentSettingAccess.hxx> #include <swtypes.hxx> #include <view.hxx> #include <edtwin.hxx> @@ -165,7 +165,7 @@ void SwOleClient::FormatChanged() if ( pView && xObj.is() && SotExchange::IsMath( xObj->getClassID() ) ) { SwWrtShell & rWrtSh = pView->GetWrtShell(); - if (rWrtSh.GetDoc()->GetDocumentSettingManager().get( IDocumentSettingAccess::MATH_BASELINE_ALIGNMENT )) + if (rWrtSh.GetDoc()->getIDocumentSettingAccess().get( IDocumentSettingAccess::MATH_BASELINE_ALIGNMENT )) rWrtSh.AlignFormulaToBaseline( xObj ); } } |