summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/vcl/bitmapex.hxx3
-rw-r--r--include/vcl/dibtools.hxx5
-rw-r--r--include/vcl/opengl/OpenGLHelper.hxx4
-rw-r--r--include/vcl/pdfwriter.hxx4
-rw-r--r--include/vcl/svapp.hxx3
5 files changed, 7 insertions, 12 deletions
diff --git a/include/vcl/bitmapex.hxx b/include/vcl/bitmapex.hxx
index ce45c0a6891f..c596a71a17a3 100644
--- a/include/vcl/bitmapex.hxx
+++ b/include/vcl/bitmapex.hxx
@@ -302,8 +302,7 @@ public:
void Replace(
const Color* pSearchColors,
const Color* pReplaceColors,
- sal_uLong nColorCount,
- const sal_uInt8* pTols = nullptr );
+ sal_uLong nColorCount );
/** Change various global color characteristics
diff --git a/include/vcl/dibtools.hxx b/include/vcl/dibtools.hxx
index f56ee96bd4e4..02c356b5cca8 100644
--- a/include/vcl/dibtools.hxx
+++ b/include/vcl/dibtools.hxx
@@ -60,11 +60,10 @@ bool VCL_DLLPUBLIC WriteDIB( // WriteDIB(rBitmap, rOStm, false, true);
bool bCompressed,
bool bFileHeader);
+// compressed, with file header
bool VCL_DLLPUBLIC WriteDIB( // WriteDIB(rBitmap, rOStm, false, true);
const BitmapEx& rSource,
- SvStream& rOStm,
- bool bCompressed,
- bool bFileHeader);
+ SvStream& rOStm);
bool VCL_DLLPUBLIC WriteDIBBitmapEx(
const BitmapEx& rSource,
diff --git a/include/vcl/opengl/OpenGLHelper.hxx b/include/vcl/opengl/OpenGLHelper.hxx
index 23b9b79a361c..ab3eca6d3acf 100644
--- a/include/vcl/opengl/OpenGLHelper.hxx
+++ b/include/vcl/opengl/OpenGLHelper.hxx
@@ -56,10 +56,8 @@ public:
/**
* The caller is responsible for allocate the memory for the RGBA buffer, before call
* this method. RGBA buffer size is assumed to be 4*width*height.
- * Since OpenGL uses textures flipped relative to BitmapEx storage this method
- * also adds the possibility to mirror the bitmap vertically at the same time.
**/
- static void ConvertBitmapExToRGBATextureBuffer(const BitmapEx& rBitmapEx, sal_uInt8* o_pRGBABuffer, const bool bFlip = false);
+ static void ConvertBitmapExToRGBATextureBuffer(const BitmapEx& rBitmapEx, sal_uInt8* o_pRGBABuffer);
static BitmapEx ConvertBGRABufferToBitmapEx(const sal_uInt8* const pBuffer, long nWidth, long nHeight);
static void renderToFile(long nWidth, long nHeight, const OUString& rFileName);
diff --git a/include/vcl/pdfwriter.hxx b/include/vcl/pdfwriter.hxx
index 1db80a5b6da1..758acdb1f08d 100644
--- a/include/vcl/pdfwriter.hxx
+++ b/include/vcl/pdfwriter.hxx
@@ -723,10 +723,10 @@ The following structure describes the permissions used in PDF security
*/
std::set< ErrorCode > const & GetErrors();
+ // uses 128bit encryption
static css::uno::Reference< css::beans::XMaterialHolder >
InitEncryption( const OUString& i_rOwnerPassword,
- const OUString& i_rUserPassword,
- bool b128Bit
+ const OUString& i_rUserPassword
);
/* functions for graphics state */
diff --git a/include/vcl/svapp.hxx b/include/vcl/svapp.hxx
index d9daba3154a8..98c123e217b5 100644
--- a/include/vcl/svapp.hxx
+++ b/include/vcl/svapp.hxx
@@ -716,13 +716,12 @@ public:
/** Send event to all VCL application event listeners
- @param nEvent Event ID
@param pWin Pointer to window to send event
@param pData Pointer to data to send with event
@see ImplCallEventListeners(VclSimpleEvent* pEvent)
*/
- static void ImplCallEventListeners( VclEventId nEvent, void* pData );
+ static void ImplCallEventListenersApplicationDataChanged( void* pData );
/** Send event to all VCL application event listeners