summaryrefslogtreecommitdiff
path: root/sc/source/ui/undo/undoblk2.cxx
diff options
context:
space:
mode:
authorGert Faller <gertfaller@aliceadsl.fr>2010-12-11 23:25:30 +0100
committerGert Faller <gertfaller@aliceadsl.fr>2010-12-11 23:25:30 +0100
commitb9a388b78d737e3810ca45f2f8011d2d91f81d92 (patch)
tree6dc3f312205940c81e00f058bb3fd3233d76ba33 /sc/source/ui/undo/undoblk2.cxx
parenta4106c6cb8995a0471df59de5706447f59f6796e (diff)
cleaning of __EXPORT define
Diffstat (limited to 'sc/source/ui/undo/undoblk2.cxx')
-rw-r--r--sc/source/ui/undo/undoblk2.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/sc/source/ui/undo/undoblk2.cxx b/sc/source/ui/undo/undoblk2.cxx
index 4a46c61683c5..2909f77ac9d1 100644
--- a/sc/source/ui/undo/undoblk2.cxx
+++ b/sc/source/ui/undo/undoblk2.cxx
@@ -87,7 +87,7 @@ ScUndoWidthOrHeight::ScUndoWidthOrHeight( ScDocShell* pNewDocShell,
pDrawUndo = GetSdrUndoAction( pDocShell->GetDocument() );
}
-__EXPORT ScUndoWidthOrHeight::~ScUndoWidthOrHeight()
+ScUndoWidthOrHeight::~ScUndoWidthOrHeight()
{
delete[] pRanges;
delete pUndoDoc;
@@ -95,7 +95,7 @@ __EXPORT ScUndoWidthOrHeight::~ScUndoWidthOrHeight()
DeleteSdrUndoAction( pDrawUndo );
}
-String __EXPORT ScUndoWidthOrHeight::GetComment() const
+String ScUndoWidthOrHeight::GetComment() const
{
// [ "optimale " ] "Spaltenbreite" | "Zeilenhoehe"
return ( bWidth ?
@@ -109,7 +109,7 @@ String __EXPORT ScUndoWidthOrHeight::GetComment() const
) );
}
-void __EXPORT ScUndoWidthOrHeight::Undo()
+void ScUndoWidthOrHeight::Undo()
{
BeginUndo();
@@ -168,7 +168,7 @@ void __EXPORT ScUndoWidthOrHeight::Undo()
EndUndo();
}
-void __EXPORT ScUndoWidthOrHeight::Redo()
+void ScUndoWidthOrHeight::Redo()
{
BeginRedo();
@@ -202,13 +202,13 @@ void __EXPORT ScUndoWidthOrHeight::Redo()
EndRedo();
}
-void __EXPORT ScUndoWidthOrHeight::Repeat(SfxRepeatTarget& rTarget)
+void ScUndoWidthOrHeight::Repeat(SfxRepeatTarget& rTarget)
{
if (rTarget.ISA(ScTabViewTarget))
((ScTabViewTarget&)rTarget).GetViewShell()->SetMarkedWidthOrHeight( bWidth, eMode, nNewSize, TRUE );
}
-BOOL __EXPORT ScUndoWidthOrHeight::CanRepeat(SfxRepeatTarget& rTarget) const
+BOOL ScUndoWidthOrHeight::CanRepeat(SfxRepeatTarget& rTarget) const
{
return (rTarget.ISA(ScTabViewTarget));
}