summaryrefslogtreecommitdiff
path: root/xmlsecurity/source/dialogs/macrosecurity.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'xmlsecurity/source/dialogs/macrosecurity.cxx')
-rw-r--r--xmlsecurity/source/dialogs/macrosecurity.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/xmlsecurity/source/dialogs/macrosecurity.cxx b/xmlsecurity/source/dialogs/macrosecurity.cxx
index 19c322811ac6..4ae1f481ab3a 100644
--- a/xmlsecurity/source/dialogs/macrosecurity.cxx
+++ b/xmlsecurity/source/dialogs/macrosecurity.cxx
@@ -325,21 +325,21 @@ void MacroSecurityTrustedSourcesTP::FillCertLB( void )
}
}
-class TrustCertLB : public SvxSimpleTable
+class TrustCertLB : public SvSimpleTable
{
public:
- TrustCertLB(SvxSimpleTableContainer &rContainer)
- : SvxSimpleTable(rContainer, 0)
+ TrustCertLB(SvSimpleTableContainer &rContainer)
+ : SvSimpleTable(rContainer, 0)
{
}
virtual void Resize()
{
- SvxSimpleTable::Resize();
+ SvSimpleTable::Resize();
if (isInitialLayout(this))
{
const long nControlWidth = GetSizePixel().Width();
long aTabLocs[] = { 3, 0, 35*nControlWidth/100, 70*nControlWidth/100 };
- SvxSimpleTable::SetTabs(aTabLocs, MAP_PIXEL);
+ SvSimpleTable::SetTabs(aTabLocs, MAP_PIXEL);
}
}
};
@@ -356,7 +356,7 @@ MacroSecurityTrustedSourcesTP::MacroSecurityTrustedSourcesTP(Window* _pParent, M
get(m_pAddLocPB, "addfile");
get(m_pRemoveLocPB, "removefile");
- SvxSimpleTableContainer *pCertificates = get<SvxSimpleTableContainer>("certificates");
+ SvSimpleTableContainer *pCertificates = get<SvSimpleTableContainer>("certificates");
m_pTrustCertLB = new TrustCertLB(*pCertificates);
static long aTabs[] = { 3, 0, 0, 0 };
m_pTrustCertLB->SetTabs( aTabs );