summaryrefslogtreecommitdiff
path: root/vcl/inc
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/inc')
-rw-r--r--vcl/inc/brdwin.hxx3
-rw-r--r--vcl/inc/listbox.hxx3
-rw-r--r--vcl/inc/octree.hxx1
-rw-r--r--vcl/inc/opengl/BufferObject.hxx17
-rw-r--r--vcl/inc/opengl/texture.hxx1
-rw-r--r--vcl/inc/printdlg.hxx1
-rw-r--r--vcl/inc/unx/glyphcache.hxx1
-rw-r--r--vcl/inc/unx/gtk/gtkframe.hxx2
-rw-r--r--vcl/inc/unx/saldisp.hxx1
9 files changed, 6 insertions, 24 deletions
diff --git a/vcl/inc/brdwin.hxx b/vcl/inc/brdwin.hxx
index e42ca6429407..3e02d049bf5f 100644
--- a/vcl/inc/brdwin.hxx
+++ b/vcl/inc/brdwin.hxx
@@ -109,9 +109,6 @@ private:
void ImplInit( vcl::Window* pParent,
WinBits nStyle, BorderWindowStyle nTypeStyle,
SystemParentData* pParentData );
- void ImplInit( vcl::Window* pParent,
- WinBits nStyle, BorderWindowStyle nTypeStyle,
- const css::uno::Any& );
ImplBorderWindow (const ImplBorderWindow &) = delete;
ImplBorderWindow& operator= (const ImplBorderWindow &) = delete;
diff --git a/vcl/inc/listbox.hxx b/vcl/inc/listbox.hxx
index 48bcdab78b78..580261313f33 100644
--- a/vcl/inc/listbox.hxx
+++ b/vcl/inc/listbox.hxx
@@ -543,8 +543,6 @@ public:
void SetImage( const Image& rImg ) { maImage = rImg; }
- void MBDown();
-
void SetMBDownHdl( const Link<void*,void>& rLink ) { maMBDownHdl = rLink; }
void SetUserDrawHdl( const Link<UserDrawEvent*, void>& rLink ) { maUserDrawHdl = rLink; }
@@ -576,7 +574,6 @@ public:
ImplBtn( vcl::Window* pParent, WinBits nWinStyle );
virtual void MouseButtonDown( const MouseEvent& rMEvt ) override;
- void MBDown();
void SetMBDownHdl( const Link<void*,void>& rLink ) { maMBDownHdl = rLink; }
};
diff --git a/vcl/inc/octree.hxx b/vcl/inc/octree.hxx
index bc9facb50638..44a4c5e0a77f 100644
--- a/vcl/inc/octree.hxx
+++ b/vcl/inc/octree.hxx
@@ -48,7 +48,6 @@ private:
void CreatePalette( NODE* pNode );
void GetPalIndex( NODE* pNode );
- SAL_DLLPRIVATE void ImplCreateOctree();
SAL_DLLPRIVATE void ImplDeleteOctree( NODE** ppNode );
SAL_DLLPRIVATE void ImplAdd( NODE** ppNode );
SAL_DLLPRIVATE void ImplReduce();
diff --git a/vcl/inc/opengl/BufferObject.hxx b/vcl/inc/opengl/BufferObject.hxx
index 3cda66deed0e..56f3aa9c20de 100644
--- a/vcl/inc/opengl/BufferObject.hxx
+++ b/vcl/inc/opengl/BufferObject.hxx
@@ -30,7 +30,12 @@ public:
virtual ~BufferObject()
{
- dispose();
+ if (mId)
+ {
+ glDeleteBuffers(1, &mId);
+ CHECK_GL_ERROR();
+ mId = 0;
+ }
}
void bind()
@@ -61,16 +66,6 @@ public:
}
}
- void dispose()
- {
- if (mId)
- {
- glDeleteBuffers(1, &mId);
- CHECK_GL_ERROR();
- mId = 0;
- }
- }
-
};
template<typename TYPE>
diff --git a/vcl/inc/opengl/texture.hxx b/vcl/inc/opengl/texture.hxx
index b092473fe1d6..923e9d43c65e 100644
--- a/vcl/inc/opengl/texture.hxx
+++ b/vcl/inc/opengl/texture.hxx
@@ -47,7 +47,6 @@ public:
ImplOpenGLTexture( int nWidth, int nHeight, int nFormat, int nType, void const * pData );
ImplOpenGLTexture( int nX, int nY, int nWidth, int nHeight );
~ImplOpenGLTexture();
- void Dispose();
bool InsertBuffer(int nX, int nY, int nWidth, int nHeight, int nFormat, int nType, sal_uInt8* pData);
diff --git a/vcl/inc/printdlg.hxx b/vcl/inc/printdlg.hxx
index 69d6771ed751..fc30c21a739d 100644
--- a/vcl/inc/printdlg.hxx
+++ b/vcl/inc/printdlg.hxx
@@ -77,7 +77,6 @@ namespace vcl
NupOrderType mnOrderMode;
int mnRows;
int mnColumns;
- void ImplInitSettings();
public:
ShowNupOrderWindow( vcl::Window* pParent );
diff --git a/vcl/inc/unx/glyphcache.hxx b/vcl/inc/unx/glyphcache.hxx
index 7cb2a84d1669..f2894213b0b0 100644
--- a/vcl/inc/unx/glyphcache.hxx
+++ b/vcl/inc/unx/glyphcache.hxx
@@ -79,7 +79,6 @@ private:
void AddedGlyph( ServerFont&, GlyphData& );
void RemovingGlyph();
void UsingGlyph( ServerFont&, GlyphData& );
- void GrowNotify();
private:
void GarbageCollect();
diff --git a/vcl/inc/unx/gtk/gtkframe.hxx b/vcl/inc/unx/gtk/gtkframe.hxx
index 40ae9e28e453..c6d774380445 100644
--- a/vcl/inc/unx/gtk/gtkframe.hxx
+++ b/vcl/inc/unx/gtk/gtkframe.hxx
@@ -423,8 +423,6 @@ public:
void startDrag(gint nButton, gint nDragOriginX, gint nDragOriginY,
GdkDragAction sourceActions, GtkTargetList* pTargetList);
- void WithDrawn();
-
static void closePopup();
#endif
diff --git a/vcl/inc/unx/saldisp.hxx b/vcl/inc/unx/saldisp.hxx
index f4d2b2326179..e1e6d5f9a2cc 100644
--- a/vcl/inc/unx/saldisp.hxx
+++ b/vcl/inc/unx/saldisp.hxx
@@ -351,7 +351,6 @@ public:
const SalX11Screen& GetDefaultXScreen() const { return m_nXDefaultScreen; }
const Size& GetScreenSize( SalX11Screen nXScreen ) const { return getDataForScreen( nXScreen ).m_aSize; }
srv_vendor_t GetServerVendor() const { return meServerVendor; }
- void SetServerVendor() { meServerVendor = sal_GetServerVendor(pDisp_); }
bool IsDisplay() const { return !!pXLib_; }
GC GetCopyGC( SalX11Screen nXScreen ) const { return getDataForScreen(nXScreen).m_aCopyGC; }
Pixmap GetInvert50( SalX11Screen nXScreen ) const { return getDataForScreen(nXScreen).m_hInvert50; }