Kaydet (Commit) 32bd430f authored tarafından Lubos Lunak's avatar Lubos Lunak

PCH for Library_svt

üst 96d3a20f
......@@ -96,10 +96,17 @@ function filter_ignore()
# - gperffasttoken.hxx is not a proper header
# - sores.hxx provides BMP_PLUGIN, which is redefined
# - some sources play ugly #define tricks with editeng/eeitemid.hxx
# - jerror.h and jpeglib.h are not self-contained
# - prewin.h, postwin.h and shlobj.h are WNT-only (to be fixed in a better way)
grep -e '\.h[">]$' -e '\.hpp[">]$' -e '\.hdl[">]$' -e '\.hxx[">]$' -e '^[^\.]*>$' | \
grep -v -F -e '#include "gperffasttoken.hxx"' | \
grep -v -F -e '#include <svtools/sores.hxx>' | \
grep -v -F -e '#include <editeng/eeitemid.hxx>'
grep -v -F -e '#include <editeng/eeitemid.hxx>' | \
grep -v -F -e '#include "jerror.h"' | \
grep -v -F -e '#include "jpeglib.h"' | \
grep -v -F -e '#include <prewin.h>' | \
grep -v -F -e '#include <postwin.h>' | \
grep -v -F -e '#include <shlobj.h>'
)
# " in #include "foo" breaks echo down below, so " -> @
......
......@@ -21,6 +21,8 @@ $(eval $(call gb_Library_Library,svt))
$(eval $(call gb_Library_use_package,svt,svtools_inc))
$(eval $(call gb_Library_set_precompiled_header,svt,$(SRCDIR)/svtools/inc/pch/precompiled_svt))
$(eval $(call gb_Library_set_componentfile,svt,svtools/util/svt))
$(eval $(call gb_Library_use_sdk_api,svt))
......
/* -*- 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_svt.hxx"
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
This diff is collapsed.
......@@ -700,7 +700,7 @@ void AssignmentPersistentData::Commit()
if ( !m_pImpl->bWorkingPersistent )
{
StyleSettings aSystemStyle = GetSettings().GetStyleSettings();
const Color& rNewColor = aSystemStyle.GetDialogColor();
const ::Color& rNewColor = aSystemStyle.GetDialogColor();
m_aDatasource.SetReadOnly( sal_True );
m_aDatasource.SetBackground( Wallpaper( rNewColor ) );
......
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