diff options
Diffstat (limited to 'include/vcl')
-rw-r--r-- | include/vcl/dibtools.hxx | 7 | ||||
-rw-r--r-- | include/vcl/gdimtf.hxx | 24 | ||||
-rw-r--r-- | include/vcl/graphicfilter.hxx | 5 | ||||
-rw-r--r-- | include/vcl/helper.hxx | 1 | ||||
-rw-r--r-- | include/vcl/print.hxx | 3 | ||||
-rw-r--r-- | include/vcl/threadex.hxx | 3 |
6 files changed, 0 insertions, 43 deletions
diff --git a/include/vcl/dibtools.hxx b/include/vcl/dibtools.hxx index ddd7c87a2bc7..079ff9e4e1a2 100644 --- a/include/vcl/dibtools.hxx +++ b/include/vcl/dibtools.hxx @@ -66,13 +66,6 @@ bool VCL_DLLPUBLIC WriteDIBBitmapEx( const BitmapEx& rSource, SvStream& rOStm); -bool VCL_DLLPUBLIC WriteDIBV5( - const Bitmap& rSource, - const Bitmap& rSourceAlpha, - SvStream& rOStm); - - - #endif // INCLUDED_VCL_DIBTOOLS_HXX diff --git a/include/vcl/gdimtf.hxx b/include/vcl/gdimtf.hxx index 9809ca60e58e..6f5c46ecbc39 100644 --- a/include/vcl/gdimtf.hxx +++ b/include/vcl/gdimtf.hxx @@ -210,30 +210,6 @@ public: bool GetUseCanvas() const { return bUseCanvas; } }; -/** Create a special metaaction that delegates rendering to specified - service. - - This factory function creates a MetaCommentAction that delegates - rendering to the specified services, once played back in the - metafile. - - @param rRendererServiceName - Renderer service. Gets an awt::XGraphic on instantiation - - @param rGraphicServiceName - Graphic service. Gets the raw data on instantiation - - @param pData - Raw data. Gets copied - - @param nDataSize - Length, in byte, of raw data - */ -MetaCommentAction* makePluggableRendererAction( const OUString& rRendererServiceName, - const OUString& rGraphicServiceName, - const void* pData, - sal_uInt32 nDataSize ); - #endif // INCLUDED_VCL_GDIMTF_HXX /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/include/vcl/graphicfilter.hxx b/include/vcl/graphicfilter.hxx index 005c146ef14b..318064bbf3b0 100644 --- a/include/vcl/graphicfilter.hxx +++ b/include/vcl/graphicfilter.hxx @@ -172,7 +172,6 @@ class VCL_DLLPUBLIC GraphicDescriptor bool ImpDetectSGV( SvStream& rStm, bool bExtendedInfo ); bool ImpDetectEMF( SvStream& rStm, bool bExtendedInfo ); bool ImpDetectSVG( SvStream& rStm, bool bExtendedInfo ); - bool ImpDetectMOV( SvStream& rStm, bool bExtendedInfo ); GraphicDescriptor( const GraphicDescriptor& ) SAL_DELETED_FUNCTION; GraphicDescriptor& operator=( const GraphicDescriptor& ) SAL_DELETED_FUNCTION; @@ -216,9 +215,6 @@ public: /** return number of planes or 0 */ sal_uInt16 GetPlanes() const { return nPlanes; } - /** @return true if the graphic is compressed */ - bool IsCompressed() const { return bCompressed; } - /** @return filter number that is needed by the GraphFilter to read this format */ static OUString GetImportFormatShortName( GraphicFileFormat nFormat ); }; @@ -270,7 +266,6 @@ public: OUString GetImportFormatShortName( sal_uInt16 nFormat ); static OUString GetImportOSFileType( sal_uInt16 nFormat ); OUString GetImportWildcard( sal_uInt16 nFormat, sal_Int32 nEntry = 0 ); - bool IsImportPixelFormat( sal_uInt16 nFormat ); sal_uInt16 GetExportFormatCount(); sal_uInt16 GetExportFormatNumber( const OUString& rFormatName ); diff --git a/include/vcl/helper.hxx b/include/vcl/helper.hxx index 49c4197958a2..34271cae690e 100644 --- a/include/vcl/helper.hxx +++ b/include/vcl/helper.hxx @@ -56,7 +56,6 @@ OUString VCL_DLLPUBLIC getOfficePath( enum whichOfficePath ePath ); } // namespace -bool VCL_DLLPUBLIC GetMenuInvalidateListeners(); #endif // INCLUDED_VCL_HELPER_HXX /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/include/vcl/print.hxx b/include/vcl/print.hxx index 4f4f223018ec..d382f12cafe7 100644 --- a/include/vcl/print.hxx +++ b/include/vcl/print.hxx @@ -99,9 +99,6 @@ public: sal_uInt32 GetJobs() const { return mnJobs; } bool operator==( const QueueInfo& rInfo ) const; - - friend VCL_DLLPUBLIC SvStream& ReadQueueInfo( SvStream& rIStream, QueueInfo& rInfo ); - friend VCL_DLLPUBLIC SvStream& WriteQueueInfo( SvStream& rOStream, const QueueInfo& rInfo ); }; diff --git a/include/vcl/threadex.hxx b/include/vcl/threadex.hxx index 939b9de2aaaa..837d7d2e1136 100644 --- a/include/vcl/threadex.hxx +++ b/include/vcl/threadex.hxx @@ -52,9 +52,6 @@ namespace vcl // doIt() completed long execute( const TimeValue& _rTimeout ) { return impl_execute( &_rTimeout ); } - public: - bool didTimeout() const { return m_bTimeout; } - private: long impl_execute( const TimeValue* _pTimeout ); }; |