summaryrefslogtreecommitdiff
path: root/sc/source/ui/pagedlg
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/pagedlg
parenta4106c6cb8995a0471df59de5706447f59f6796e (diff)
cleaning of __EXPORT define
Diffstat (limited to 'sc/source/ui/pagedlg')
-rw-r--r--sc/source/ui/pagedlg/hfedtdlg.cxx4
-rw-r--r--sc/source/ui/pagedlg/scuitphfedit.cxx22
-rw-r--r--sc/source/ui/pagedlg/tphf.cxx18
-rw-r--r--sc/source/ui/pagedlg/tphfedit.cxx18
4 files changed, 31 insertions, 31 deletions
diff --git a/sc/source/ui/pagedlg/hfedtdlg.cxx b/sc/source/ui/pagedlg/hfedtdlg.cxx
index 3fa032989dfc..8ba49db77dfc 100644
--- a/sc/source/ui/pagedlg/hfedtdlg.cxx
+++ b/sc/source/ui/pagedlg/hfedtdlg.cxx
@@ -168,13 +168,13 @@ ScHFEditDlg::ScHFEditDlg( SfxViewFrame* pFrameP,
// -----------------------------------------------------------------------
-__EXPORT ScHFEditDlg::~ScHFEditDlg()
+ScHFEditDlg::~ScHFEditDlg()
{
}
// -----------------------------------------------------------------------
-void __EXPORT ScHFEditDlg::PageCreated( USHORT /* nId */, SfxTabPage& rPage )
+void ScHFEditDlg::PageCreated( USHORT /* nId */, SfxTabPage& rPage )
{
// kann ja nur ne ScHFEditPage sein...
diff --git a/sc/source/ui/pagedlg/scuitphfedit.cxx b/sc/source/ui/pagedlg/scuitphfedit.cxx
index 3f22ab40772c..3d57d39bbe17 100644
--- a/sc/source/ui/pagedlg/scuitphfedit.cxx
+++ b/sc/source/ui/pagedlg/scuitphfedit.cxx
@@ -172,7 +172,7 @@ ScHFEditPage::ScHFEditPage( Window* pParent,
// -----------------------------------------------------------------------
-__EXPORT ScHFEditPage::~ScHFEditPage()
+ScHFEditPage::~ScHFEditPage()
{
}
@@ -187,7 +187,7 @@ void ScHFEditPage::SetNumType(SvxNumType eNumType)
#define IS_AVAILABLE(w)(rCoreSet.GetItemState( (w) ) >= SFX_ITEM_AVAILABLE)
-void __EXPORT ScHFEditPage::Reset( const SfxItemSet& rCoreSet )
+void ScHFEditPage::Reset( const SfxItemSet& rCoreSet )
{
if ( IS_AVAILABLE( nWhich ) )
{
@@ -208,7 +208,7 @@ void __EXPORT ScHFEditPage::Reset( const SfxItemSet& rCoreSet )
// -----------------------------------------------------------------------
-BOOL __EXPORT ScHFEditPage::FillItemSet( SfxItemSet& rCoreSet )
+BOOL ScHFEditPage::FillItemSet( SfxItemSet& rCoreSet )
{
ScPageHFItem aItem( nWhich );
EditTextObject* pLeft = aWndLeft .CreateTextObject();
@@ -925,12 +925,12 @@ ScRightHeaderEditPage::ScRightHeaderEditPage( Window* pParent, const SfxItemSet&
// -----------------------------------------------------------------------
-USHORT* __EXPORT ScRightHeaderEditPage::GetRanges()
+USHORT* ScRightHeaderEditPage::GetRanges()
{ return pPageRightHeaderRanges; }
// -----------------------------------------------------------------------
-SfxTabPage* __EXPORT ScRightHeaderEditPage::Create( Window* pParent, const SfxItemSet& rCoreSet )
+SfxTabPage* ScRightHeaderEditPage::Create( Window* pParent, const SfxItemSet& rCoreSet )
{ return ( new ScRightHeaderEditPage( pParent, rCoreSet ) ); };
@@ -945,12 +945,12 @@ ScLeftHeaderEditPage::ScLeftHeaderEditPage( Window* pParent, const SfxItemSet& r
// -----------------------------------------------------------------------
-USHORT* __EXPORT ScLeftHeaderEditPage::GetRanges()
+USHORT* ScLeftHeaderEditPage::GetRanges()
{ return pPageLeftHeaderRanges; }
// -----------------------------------------------------------------------
-SfxTabPage* __EXPORT ScLeftHeaderEditPage::Create( Window* pParent, const SfxItemSet& rCoreSet )
+SfxTabPage* ScLeftHeaderEditPage::Create( Window* pParent, const SfxItemSet& rCoreSet )
{ return ( new ScLeftHeaderEditPage( pParent, rCoreSet ) ); };
//========================================================================
@@ -964,12 +964,12 @@ ScRightFooterEditPage::ScRightFooterEditPage( Window* pParent, const SfxItemSet&
// -----------------------------------------------------------------------
-USHORT* __EXPORT ScRightFooterEditPage::GetRanges()
+USHORT* ScRightFooterEditPage::GetRanges()
{ return pPageRightFooterRanges; }
// -----------------------------------------------------------------------
-SfxTabPage* __EXPORT ScRightFooterEditPage::Create( Window* pParent, const SfxItemSet& rCoreSet )
+SfxTabPage* ScRightFooterEditPage::Create( Window* pParent, const SfxItemSet& rCoreSet )
{ return ( new ScRightFooterEditPage( pParent, rCoreSet ) ); };
//========================================================================
@@ -983,12 +983,12 @@ ScLeftFooterEditPage::ScLeftFooterEditPage( Window* pParent, const SfxItemSet& r
// -----------------------------------------------------------------------
-USHORT* __EXPORT ScLeftFooterEditPage::GetRanges()
+USHORT* ScLeftFooterEditPage::GetRanges()
{ return pPageLeftFooterRanges; }
// -----------------------------------------------------------------------
-SfxTabPage* __EXPORT ScLeftFooterEditPage::Create( Window* pParent, const SfxItemSet& rCoreSet )
+SfxTabPage* ScLeftFooterEditPage::Create( Window* pParent, const SfxItemSet& rCoreSet )
{ return ( new ScLeftFooterEditPage( pParent, rCoreSet ) ); };
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sc/source/ui/pagedlg/tphf.cxx b/sc/source/ui/pagedlg/tphf.cxx
index 96150acf4960..77542e3d6052 100644
--- a/sc/source/ui/pagedlg/tphf.cxx
+++ b/sc/source/ui/pagedlg/tphf.cxx
@@ -105,13 +105,13 @@ ScHFPage::ScHFPage( Window* pParent, USHORT nResId,
//------------------------------------------------------------------
-__EXPORT ScHFPage::~ScHFPage()
+ScHFPage::~ScHFPage()
{
}
//------------------------------------------------------------------
-void __EXPORT ScHFPage::Reset( const SfxItemSet& rSet )
+void ScHFPage::Reset( const SfxItemSet& rSet )
{
SvxHFPage::Reset( rSet );
TurnOnHdl( 0 );
@@ -119,7 +119,7 @@ void __EXPORT ScHFPage::Reset( const SfxItemSet& rSet )
//------------------------------------------------------------------
-BOOL __EXPORT ScHFPage::FillItemSet( SfxItemSet& rOutSet )
+BOOL ScHFPage::FillItemSet( SfxItemSet& rOutSet )
{
BOOL bResult = SvxHFPage::FillItemSet( rOutSet );
@@ -139,7 +139,7 @@ BOOL __EXPORT ScHFPage::FillItemSet( SfxItemSet& rOutSet )
//------------------------------------------------------------------
-void __EXPORT ScHFPage::ActivatePage( const SfxItemSet& rSet )
+void ScHFPage::ActivatePage( const SfxItemSet& rSet )
{
USHORT nPageWhich = GetWhich( SID_ATTR_PAGE );
const SvxPageItem& rPageItem = (const SvxPageItem&)
@@ -157,7 +157,7 @@ void __EXPORT ScHFPage::ActivatePage( const SfxItemSet& rSet )
//------------------------------------------------------------------
-int __EXPORT ScHFPage::DeactivatePage( SfxItemSet* pSetP )
+int ScHFPage::DeactivatePage( SfxItemSet* pSetP )
{
if ( LEAVE_PAGE == SvxHFPage::DeactivatePage( pSetP ) )
if ( pSetP )
@@ -291,14 +291,14 @@ ScHeaderPage::ScHeaderPage( Window* pParent, const SfxItemSet& rSet )
//------------------------------------------------------------------
-SfxTabPage* __EXPORT ScHeaderPage::Create( Window* pParent, const SfxItemSet& rCoreSet )
+SfxTabPage* ScHeaderPage::Create( Window* pParent, const SfxItemSet& rCoreSet )
{
return ( new ScHeaderPage( pParent, rCoreSet ) );
}
//------------------------------------------------------------------
-USHORT* __EXPORT ScHeaderPage::GetRanges()
+USHORT* ScHeaderPage::GetRanges()
{
return SvxHeaderPage::GetRanges();
}
@@ -314,14 +314,14 @@ ScFooterPage::ScFooterPage( Window* pParent, const SfxItemSet& rSet )
//------------------------------------------------------------------
-SfxTabPage* __EXPORT ScFooterPage::Create( Window* pParent, const SfxItemSet& rCoreSet )
+SfxTabPage* ScFooterPage::Create( Window* pParent, const SfxItemSet& rCoreSet )
{
return ( new ScFooterPage( pParent, rCoreSet ) );
}
//------------------------------------------------------------------
-USHORT* __EXPORT ScFooterPage::GetRanges()
+USHORT* ScFooterPage::GetRanges()
{
return SvxHeaderPage::GetRanges();
}
diff --git a/sc/source/ui/pagedlg/tphfedit.cxx b/sc/source/ui/pagedlg/tphfedit.cxx
index d132339a3726..5f901b9a4ddd 100644
--- a/sc/source/ui/pagedlg/tphfedit.cxx
+++ b/sc/source/ui/pagedlg/tphfedit.cxx
@@ -130,7 +130,7 @@ ScEditWindow::ScEditWindow( Window* pParent, const ResId& rResId, ScEditWindowLo
// -----------------------------------------------------------------------
-__EXPORT ScEditWindow::~ScEditWindow()
+ScEditWindow::~ScEditWindow()
{
// delete Accessible object before deleting EditEngine and EditView
if (pAcc)
@@ -153,7 +153,7 @@ void ScEditWindow::SetNumType(SvxNumType eNumType)
// -----------------------------------------------------------------------
-EditTextObject* __EXPORT ScEditWindow::CreateTextObject()
+EditTextObject* ScEditWindow::CreateTextObject()
{
// wegen #38841# die Absatzattribute zuruecksetzen
// (GetAttribs beim Format-Dialog-Aufruf gibt immer gesetzte Items zurueck)
@@ -237,7 +237,7 @@ void ScEditWindow::SetCharAttriutes()
// -----------------------------------------------------------------------
-void __EXPORT ScEditWindow::Paint( const Rectangle& rRec )
+void ScEditWindow::Paint( const Rectangle& rRec )
{
const StyleSettings& rStyleSettings = Application::GetSettings().GetStyleSettings();
Color aBgColor = rStyleSettings.GetWindowColor();
@@ -253,14 +253,14 @@ void __EXPORT ScEditWindow::Paint( const Rectangle& rRec )
// -----------------------------------------------------------------------
-void __EXPORT ScEditWindow::MouseMove( const MouseEvent& rMEvt )
+void ScEditWindow::MouseMove( const MouseEvent& rMEvt )
{
pEdView->MouseMove( rMEvt );
}
// -----------------------------------------------------------------------
-void __EXPORT ScEditWindow::MouseButtonDown( const MouseEvent& rMEvt )
+void ScEditWindow::MouseButtonDown( const MouseEvent& rMEvt )
{
if ( !HasFocus() )
GrabFocus();
@@ -270,14 +270,14 @@ void __EXPORT ScEditWindow::MouseButtonDown( const MouseEvent& rMEvt )
// -----------------------------------------------------------------------
-void __EXPORT ScEditWindow::MouseButtonUp( const MouseEvent& rMEvt )
+void ScEditWindow::MouseButtonUp( const MouseEvent& rMEvt )
{
pEdView->MouseButtonUp( rMEvt );
}
// -----------------------------------------------------------------------
-void __EXPORT ScEditWindow::KeyInput( const KeyEvent& rKEvt )
+void ScEditWindow::KeyInput( const KeyEvent& rKEvt )
{
USHORT nKey = rKEvt.GetKeyCode().GetModifier()
+ rKEvt.GetKeyCode().GetCode();
@@ -301,7 +301,7 @@ void ScEditWindow::Command( const CommandEvent& rCEvt )
// -----------------------------------------------------------------------
-void __EXPORT ScEditWindow::GetFocus()
+void ScEditWindow::GetFocus()
{
pActiveEdWnd = this;
@@ -314,7 +314,7 @@ void __EXPORT ScEditWindow::GetFocus()
pAcc = NULL;
}
-void __EXPORT ScEditWindow::LoseFocus()
+void ScEditWindow::LoseFocus()
{
::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible > xTemp = xAcc;
if (xTemp.is() && pAcc)