Kaydet (Commit) 0ba0980b authored tarafından Luboš Luňák's avatar Luboš Luňák

PCH for Library_sd

üst 62341066
......@@ -27,6 +27,8 @@
$(eval $(call gb_Library_Library,sd))
$(eval $(call gb_Library_set_precompiled_header,sd,$(SRCDIR)/sd/inc/pch/precompiled_sd))
$(eval $(call gb_SdiTarget_SdiTarget,sd/sdi/sdslots,sd/sdi/sdslots))
$(eval $(call gb_SdiTarget_set_include,sd/sdi/sdslots,\
......
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
#include "precompiled_sd.hxx"
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
This diff is collapsed.
......@@ -162,7 +162,7 @@ void SAL_CALL FullScreenPane::setVisible (const sal_Bool bIsVisible)
Reference<accessibility::XAccessible> SAL_CALL FullScreenPane::getAccessible (void)
Reference<css::accessibility::XAccessible> SAL_CALL FullScreenPane::getAccessible (void)
throw (RuntimeException)
{
ThrowIfDisposed();
......@@ -177,7 +177,7 @@ Reference<accessibility::XAccessible> SAL_CALL FullScreenPane::getAccessible (vo
void SAL_CALL FullScreenPane::setAccessible (
const Reference<accessibility::XAccessible>& rxAccessible)
const Reference<css::accessibility::XAccessible>& rxAccessible)
throw (RuntimeException)
{
ThrowIfDisposed();
......@@ -188,7 +188,7 @@ void SAL_CALL FullScreenPane::setAccessible (
if (xInitializable.is())
{
::Window* pParentWindow = mpWindow->GetParent();
Reference<accessibility::XAccessible> xAccessibleParent;
Reference<css::accessibility::XAccessible> xAccessibleParent;
if (pParentWindow != NULL)
xAccessibleParent = pParentWindow->GetAccessible();
Sequence<Any> aArguments (1);
......
......@@ -134,7 +134,7 @@ void SAL_CALL Pane::setVisible (sal_Bool bIsVisible)
Reference<accessibility::XAccessible> SAL_CALL Pane::getAccessible (void)
Reference<css::accessibility::XAccessible> SAL_CALL Pane::getAccessible (void)
throw (RuntimeException)
{
ThrowIfDisposed();
......@@ -149,7 +149,7 @@ Reference<accessibility::XAccessible> SAL_CALL Pane::getAccessible (void)
void SAL_CALL Pane::setAccessible (
const Reference<accessibility::XAccessible>& rxAccessible)
const Reference<css::accessibility::XAccessible>& rxAccessible)
throw (RuntimeException)
{
ThrowIfDisposed();
......
......@@ -29,6 +29,10 @@
#endif
#ifdef WIN32
// LO vs WinAPI conflict
#undef WB_LEFT
#undef WB_RIGHT
#include <winsock2.h>
#include <ws2bth.h>
#endif
......
......@@ -12,6 +12,10 @@
#include <algorithm>
#ifdef WIN32
// LO vs WinAPI conflict
#undef WB_LEFT
#undef WB_RIGHT
#include <winsock2.h>
#else
#include <sys/socket.h>
......
......@@ -17,6 +17,10 @@
#include "DiscoveryService.hxx"
#ifdef WIN32
// LO vs WinAPI conflict
#undef WB_LEFT
#undef WB_RIGHT
#include <winsock2.h>
#include <ws2tcpip.h>
typedef int socklen_t;
......@@ -30,7 +34,6 @@
using namespace osl;
using namespace rtl;
using namespace sd;
using namespace std;
DiscoveryService::DiscoveryService() :
mSocket(0)
......
......@@ -27,6 +27,8 @@
#include <sfx2/bindings.hxx>
#include "svx/svxdllapi.h"
class SdrGrafObj;
class SVX_DLLPUBLIC CompressGraphicsDialog : public ModalDialog
{
private:
......
......@@ -32,8 +32,8 @@ class SfxItemSet;
SVX_DLLPUBLIC FieldUnit GetModuleFieldUnit( const SfxItemSet& );
SVX_DLLPUBLIC bool GetApplyCharUnit( const SfxItemSet& );
#define OUTPUT_DRAWMODE_COLOR (DRAWMODE_DEFAULT)
#define OUTPUT_DRAWMODE_CONTRAST (DRAWMODE_SETTINGSLINE | DRAWMODE_SETTINGSFILL | DRAWMODE_SETTINGSTEXT | DRAWMODE_SETTINGSGRADIENT)
static const int OUTPUT_DRAWMODE_COLOR = (DRAWMODE_DEFAULT);
static const int OUTPUT_DRAWMODE_CONTRAST = (DRAWMODE_SETTINGSLINE | DRAWMODE_SETTINGSFILL | DRAWMODE_SETTINGSTEXT | DRAWMODE_SETTINGSGRADIENT);
#endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment