summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--offapi/com/sun/star/awt/XDockableWindow.idl4
-rw-r--r--toolkit/source/awt/vclxwindow.cxx4
2 files changed, 6 insertions, 2 deletions
diff --git a/offapi/com/sun/star/awt/XDockableWindow.idl b/offapi/com/sun/star/awt/XDockableWindow.idl
index 400283827bae..d34289a5bdb8 100644
--- a/offapi/com/sun/star/awt/XDockableWindow.idl
+++ b/offapi/com/sun/star/awt/XDockableWindow.idl
@@ -100,6 +100,8 @@ interface XDockableWindow : com::sun::star::uno::XInterface
the corresponding events
@param WindowRect
specifies the position and size of the pop-up window in frame coordinates
+
+ @deprecated - doesn't do anything
*/
void startPopupMode( [in] com::sun::star::awt::Rectangle WindowRect );
@@ -108,6 +110,8 @@ interface XDockableWindow : com::sun::star::uno::XInterface
@returns
`TRUE` if the window is in pop-up mode
`FALSE` if the window is not in pop-up mode
+
+ @deprecated - always returns `FALSE`
*/
boolean isInPopupMode();
};
diff --git a/toolkit/source/awt/vclxwindow.cxx b/toolkit/source/awt/vclxwindow.cxx
index b178fc57cd58..4649a146d6e7 100644
--- a/toolkit/source/awt/vclxwindow.cxx
+++ b/toolkit/source/awt/vclxwindow.cxx
@@ -2409,12 +2409,12 @@ void SAL_CALL VCLXWindow::unlock( )
void SAL_CALL VCLXWindow::startPopupMode( const css::awt::Rectangle& )
{
- // TODO: remove interface in the next incompatible build
+ // deprecated
}
sal_Bool SAL_CALL VCLXWindow::isInPopupMode( )
{
- // TODO: remove interface in the next incompatible build
+ // deprecated
return false;
}