tdf#97228 Move include file include/vcl/BitmapProcessor.hxx to vcl/inc/

Adapt users, all in vcl, accordingly.

Change-Id: I4531840091da73fa8fc29175407fa8a737deac18
Reviewed-on: https://gerrit.libreoffice.org/32442
Reviewed-by: Tor Lillqvist <tml@collabora.com>
Tested-by: Tor Lillqvist <tml@collabora.com>
This commit is contained in:
abdulwd
2016-12-27 12:22:43 +05:30
committed by Tor Lillqvist
parent ae02f60cc0
commit e61fe745d1
5 changed files with 9 additions and 7 deletions

View File

@ -7,8 +7,8 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
#ifndef INCLUDED_VCL_BITMAP_PROCESSOR_HXX
#define INCLUDED_VCL_BITMAP_PROCESSOR_HXX
#ifndef VCL_INC_BITMAP_PROCESSOR_HXX
#define VCL_INC_BITMAP_PROCESSOR_HXX
#include <vcl/bitmapex.hxx>
@ -20,6 +20,6 @@ public:
static void colorizeImage(BitmapEx& rBitmapEx, Color aColor);
};
#endif // INCLUDED_VCL_BITMAP_PROCESSOR_HXX
#endif // VCL_INC_BITMAP_PROCESSOR_HXX
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */

View File

@ -8,10 +8,11 @@
*
*/
#include <vcl/BitmapProcessor.hxx>
#include <vcl/bitmapaccess.hxx>
#include <basegfx/color/bcolortools.hxx>
#include "BitmapProcessor.hxx"
BitmapEx BitmapProcessor::createLightImage(const BitmapEx& rBitmapEx)
{
const Size aSize(rBitmapEx.GetSizePixel());

View File

@ -34,7 +34,7 @@
#include <sal/types.h>
#include <image.h>
#include <vcl/BitmapProcessor.hxx>
#include "BitmapProcessor.hxx"
#if OSL_DEBUG_LEVEL > 0
#include <rtl/strbuf.hxx>

View File

@ -35,7 +35,7 @@
#include <rtl/strbuf.hxx>
#endif
#include <vcl/BitmapProcessor.hxx>
#include "BitmapProcessor.hxx"
ImageAryData::ImageAryData( const ImageAryData& rData ) :
maName( rData.maName ),

View File

@ -45,10 +45,11 @@
#include <vcl/settings.hxx>
#include <vcl/svapp.hxx>
#include <vcl/BitmapProcessor.hxx>
#include <vcl/BitmapTools.hxx>
#include <vcl/pngwrite.hxx>
#include "BitmapProcessor.hxx"
bool ImageRequestParameters::convertToDarkTheme()
{
static bool bIconsForDarkTheme = !!getenv("VCL_ICONS_FOR_DARK_THEME");