summaryrefslogtreecommitdiff
path: root/sd
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2005-12-14 15:59:36 +0000
committerRüdiger Timm <rt@openoffice.org>2005-12-14 15:59:36 +0000
commitfe2ff1f9fb18749063d86963f39426dafff766c3 (patch)
treed0cd374895a75088f299afbae930d79c14574d04 /sd
parent4539657d62e881e27a77d5ffd98710b109a3de83 (diff)
INTEGRATION: CWS impressfunctions (1.6.40); FILE MERGED
2005/10/28 10:57:37 cl 1.6.40.1: #125341# reworked FuPoor classes to use refcounting
Diffstat (limited to 'sd')
-rw-r--r--sd/source/ui/func/fuline.cxx24
1 files changed, 22 insertions, 2 deletions
diff --git a/sd/source/ui/func/fuline.cxx b/sd/source/ui/func/fuline.cxx
index 06fcb323c01d..79b71d01f1d9 100644
--- a/sd/source/ui/func/fuline.cxx
+++ b/sd/source/ui/func/fuline.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: fuline.cxx,v $
*
- * $Revision: 1.6 $
+ * $Revision: 1.7 $
*
- * last change: $Author: rt $ $Date: 2005-09-09 04:43:57 $
+ * last change: $Author: rt $ $Date: 2005-12-14 16:59:36 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -98,6 +98,17 @@ FuLine::FuLine (
SfxRequest& rReq)
: FuPoor(pViewSh, pWin, pView, pDoc, rReq)
{
+}
+
+FunctionReference FuLine::Create( ViewShell* pViewSh, ::sd::Window* pWin, ::sd::View* pView, SdDrawDocument* pDoc, SfxRequest& rReq )
+{
+ FunctionReference xFunc( new FuLine( pViewSh, pWin, pView, pDoc, rReq ) );
+ xFunc->DoExecute(rReq);
+ return xFunc;
+}
+
+void FuLine::DoExecute( SfxRequest& rReq )
+{
BOOL bHasMarked = pView->AreObjectsMarked();
const SfxItemSet* pArgs = rReq.GetArgs();
@@ -175,4 +186,13 @@ FuLine::FuLine (
rReq.Ignore ();
}
+void FuLine::Activate()
+{
+}
+
+void FuLine::Deactivate()
+{
+}
+
+
} // end of namespace sd