Kaydet (Commit) b018b02e authored tarafından Miklos Vajna's avatar Miklos Vajna

sw: prefix members of SwTransferable

Change-Id: I2011bc44a4afbf41ecaadbbb4fa82b7dac130e27
üst 6621da38
...@@ -56,25 +56,25 @@ namespace nsTransferBufferType ...@@ -56,25 +56,25 @@ namespace nsTransferBufferType
class SW_DLLPUBLIC SwTransferable : public TransferableHelper class SW_DLLPUBLIC SwTransferable : public TransferableHelper
{ {
friend class SwView_Impl; friend class SwView_Impl;
SfxObjectShellLock aDocShellRef; SfxObjectShellLock m_aDocShellRef;
TransferableDataHelper aOleData; TransferableDataHelper m_aOleData;
TransferableObjectDescriptor aObjDesc; TransferableObjectDescriptor m_aObjDesc;
::sfx2::SvBaseLinkRef refDdeLink; ::sfx2::SvBaseLinkRef m_xDdeLink;
SwWrtShell *pWrtShell; SwWrtShell *m_pWrtShell;
/* #96392# Added pCreatorView to distinguish SwFrameShell from /* #96392# Added pCreatorView to distinguish SwFrameShell from
SwWrtShell. */ SwWrtShell. */
const SwFrameShell *pCreatorView; const SwFrameShell *m_pCreatorView;
SwDocFac *pClpDocFac; SwDocFac *m_pClpDocFac;
Graphic *pClpGraphic, *pClpBitmap, *pOrigGrf; Graphic *m_pClpGraphic, *m_pClpBitmap, *m_pOrigGraphic;
INetBookmark *pBkmk; // URL and description! INetBookmark *m_pBookmark; // URL and description!
ImageMap *pImageMap; ImageMap *m_pImageMap;
INetImage *pTargetURL; INetImage *m_pTargetURL;
TransferBufferType eBufferType; TransferBufferType m_eBufferType;
bool bOldIdle :1; //D&D Idle flag from the viewsettings bool m_bOldIdle :1; //D&D Idle flag from the viewsettings
bool bCleanUp :1; //D&D cleanup after Drop (not by internal Drop) bool m_bCleanUp :1; //D&D cleanup after Drop (not by internal Drop)
// helper methods for the copy // helper methods for the copy
css::uno::Reference < css::embed::XEmbeddedObject > FindOLEObj( sal_Int64& nAspect ) const; css::uno::Reference < css::embed::XEmbeddedObject > FindOLEObj( sal_Int64& nAspect ) const;
...@@ -190,8 +190,8 @@ public: ...@@ -190,8 +190,8 @@ public:
// Interfaces for Drag & Drop // Interfaces for Drag & Drop
void StartDrag( vcl::Window* pWin, const Point& rPos ); void StartDrag( vcl::Window* pWin, const Point& rPos );
SwWrtShell* GetShell() { return pWrtShell; } SwWrtShell* GetShell() { return m_pWrtShell; }
void SetCleanUp( bool bFlag ) { bCleanUp = bFlag; } void SetCleanUp( bool bFlag ) { m_bCleanUp = bFlag; }
// Interfaces for Selection // Interfaces for Selection
/* #96392# Added pCreator to distinguish SwFrameShell from SwWrtShell. */ /* #96392# Added pCreator to distinguish SwFrameShell from SwWrtShell. */
...@@ -201,7 +201,7 @@ public: ...@@ -201,7 +201,7 @@ public:
const SwFrameShell * pCreator = NULL ); const SwFrameShell * pCreator = NULL );
// the related SwView is being closed and the SwTransferable is invalid now // the related SwView is being closed and the SwTransferable is invalid now
void Invalidate() {pWrtShell = 0;} void Invalidate() {m_pWrtShell = 0;}
static const css::uno::Sequence< sal_Int8 >& getUnoTunnelId(); static const css::uno::Sequence< sal_Int8 >& getUnoTunnelId();
virtual sal_Int64 SAL_CALL getSomething( const css::uno::Sequence< sal_Int8 >& rId ) throw( css::uno::RuntimeException, std::exception ) SAL_OVERRIDE; virtual sal_Int64 SAL_CALL getSomething( const css::uno::Sequence< sal_Int8 >& rId ) throw( css::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment