diff options
author | Andreas Bregas <ab@openoffice.org> | 2001-07-05 09:42:52 +0000 |
---|---|---|
committer | Andreas Bregas <ab@openoffice.org> | 2001-07-05 09:42:52 +0000 |
commit | 7576a5c01d7f71eb8b7f5e72d57dad6c818db24e (patch) | |
tree | 6324ed62458aef6841614fbf0b76c39ff84b597d /basic | |
parent | 2e433792491a50de400ff6fe21c94a655b06b2bb (diff) |
#89181# Removed old drop/querydrop functions
Diffstat (limited to 'basic')
-rw-r--r-- | basic/source/app/textedit.cxx | 8 | ||||
-rw-r--r-- | basic/source/app/textedit.hxx | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/basic/source/app/textedit.cxx b/basic/source/app/textedit.cxx index 818d4be5f067..318917fbc8f7 100644 --- a/basic/source/app/textedit.cxx +++ b/basic/source/app/textedit.cxx @@ -2,9 +2,9 @@ * * $RCSfile: textedit.cxx,v $ * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * - * last change: $Author: gh $ $Date: 2001-05-15 15:09:11 $ + * last change: $Author: ab $ $Date: 2001-07-05 10:42:52 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -530,8 +530,8 @@ void TextEditImp::MouseButtonUp( const MouseEvent& rMouseEvent ){ pTextView->Mou //void TextEditImp::MouseButtonDown( const MouseEvent& rMouseEvent ){ pTextView->MouseButtonDown( rMouseEvent );} //void TextEditImp::MouseMove( const MouseEvent& rMouseEvent ){ pTextView->MouseMove( rMouseEvent );} //void TextEditImp::Command( const CommandEvent& rCEvt ){ pTextView->Command( rCEvt );} -BOOL TextEditImp::Drop( const DropEvent& rEvt ){ return FALSE /*pTextView->Drop( rEvt )*/;} -BOOL TextEditImp::QueryDrop( DropEvent& rEvt ){ return FALSE /*pTextView->QueryDrop( rEvt )*/;} +//BOOL TextEditImp::Drop( const DropEvent& rEvt ){ return FALSE /*pTextView->Drop( rEvt )*/;} +//BOOL TextEditImp::QueryDrop( DropEvent& rEvt ){ return FALSE /*pTextView->QueryDrop( rEvt )*/;} void TextEditImp::Command( const CommandEvent& rCEvt ) diff --git a/basic/source/app/textedit.hxx b/basic/source/app/textedit.hxx index a96123b507c9..57cfbe5d0b6b 100644 --- a/basic/source/app/textedit.hxx +++ b/basic/source/app/textedit.hxx @@ -2,9 +2,9 @@ * * $RCSfile: textedit.hxx,v $ * - * $Revision: 1.1.1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: hr $ $Date: 2000-09-18 16:12:09 $ + * last change: $Author: ab $ $Date: 2001-07-05 10:42:52 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -140,8 +140,8 @@ public: void MouseButtonDown( const MouseEvent& rMouseEvent ); // void MouseMove( const MouseEvent& rMouseEvent ); void Command( const CommandEvent& rCEvt ); - BOOL Drop( const DropEvent& rEvt ); - BOOL QueryDrop( DropEvent& rEvt ); + //BOOL Drop( const DropEvent& rEvt ); + //BOOL QueryDrop( DropEvent& rEvt ); void DoDelayedSyntaxHighlight( xub_StrLen nPara ); |