summaryrefslogtreecommitdiff
path: root/svx/source/outliner/outliner.cxx
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2006-02-01 11:58:29 +0000
committerKurt Zenker <kz@openoffice.org>2006-02-01 11:58:29 +0000
commit7f01460c7332c10fd92e8aeeb2fd62293968042c (patch)
tree032dd091956ee3031b948364793c3ba07fd15f74 /svx/source/outliner/outliner.cxx
parentb256367fc6e23f840455eb603e659f6955d9b365 (diff)
INTEGRATION: CWS impress83 (1.63.8); FILE MERGED
2006/01/19 16:32:50 cl 1.63.8.1: #i60833# added BeginDropHdl and EndDropHdl for impress outliner view undo
Diffstat (limited to 'svx/source/outliner/outliner.cxx')
-rw-r--r--svx/source/outliner/outliner.cxx26
1 files changed, 24 insertions, 2 deletions
diff --git a/svx/source/outliner/outliner.cxx b/svx/source/outliner/outliner.cxx
index c72e371314..32e6b7e0fc 100644
--- a/svx/source/outliner/outliner.cxx
+++ b/svx/source/outliner/outliner.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: outliner.cxx,v $
*
- * $Revision: 1.64 $
+ * $Revision: 1.65 $
*
- * last change: $Author: hr $ $Date: 2006-01-24 16:50:45 $
+ * last change: $Author: kz $ $Date: 2006-02-01 12:58:29 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -2357,6 +2357,28 @@ IMPL_LINK( Outliner, EditEngineNotifyHdl, EENotify*, pNotify )
return 0;
}
+/** sets a link that is called at the beginning of a drag operation at an edit view */
+void Outliner::SetBeginDropHdl( const Link& rLink )
+{
+ pEditEngine->SetBeginDropHdl( rLink );
+}
+
+Link Outliner::GetBeginDropHdl() const
+{
+ return pEditEngine->GetBeginDropHdl();
+}
+
+/** sets a link that is called at the end of a drag operation at an edit view */
+void Outliner::SetEndDropHdl( const Link& rLink )
+{
+ pEditEngine->SetEndDropHdl( rLink );
+}
+
+Link Outliner::GetEndDropHdl() const
+{
+ return pEditEngine->GetEndDropHdl();
+}
+
sal_Bool DrawPortionInfo::IsRTL() const
{
if(0xFF == mnBiDiLevel)