summaryrefslogtreecommitdiff
path: root/xmlsecurity
diff options
context:
space:
mode:
authorPeter Foley <pefoley2@verizon.net>2013-03-23 20:22:47 -0400
committerPeter Foley <pefoley2@verizon.net>2013-03-24 08:55:55 -0400
commit9cac6577496d0aa5ee22720239fcd18fcde85a02 (patch)
tree5bf2d4d862a9c01403da6b4ccdf92fddfbbd42e9 /xmlsecurity
parent8726f878574b00fea9a47601e2c341b6f7d7aa37 (diff)
add cui to Library_merged
Change-Id: I485426c0a0792e17bae5ef125d69f52827b469b2
Diffstat (limited to 'xmlsecurity')
-rw-r--r--xmlsecurity/inc/xmlsecurity/macrosecurity.hxx6
-rw-r--r--xmlsecurity/source/dialogs/macrosecurity.cxx10
2 files changed, 8 insertions, 8 deletions
diff --git a/xmlsecurity/inc/xmlsecurity/macrosecurity.hxx b/xmlsecurity/inc/xmlsecurity/macrosecurity.hxx
index 8dc691ec84c5..9f79955bfc23 100644
--- a/xmlsecurity/inc/xmlsecurity/macrosecurity.hxx
+++ b/xmlsecurity/inc/xmlsecurity/macrosecurity.hxx
@@ -42,11 +42,11 @@ namespace dcss = ::com::sun::star;
class MacroSecurityTP;
-class ReadOnlyImage : public FixedImage
+class XmlReadOnlyImage : public FixedImage
{
public:
- ReadOnlyImage(Window* pParent, const ResId rResId);
- ~ReadOnlyImage();
+ XmlReadOnlyImage(Window* pParent, const ResId rResId);
+ ~XmlReadOnlyImage();
virtual void RequestHelp( const HelpEvent& rHEvt );
static const OUString& GetHelpTip();
diff --git a/xmlsecurity/source/dialogs/macrosecurity.cxx b/xmlsecurity/source/dialogs/macrosecurity.cxx
index 3a0a745fe203..0063b0fdc739 100644
--- a/xmlsecurity/source/dialogs/macrosecurity.cxx
+++ b/xmlsecurity/source/dialogs/macrosecurity.cxx
@@ -433,17 +433,17 @@ void MacroSecurityTrustedSourcesTP::ClosePage( void )
mpDlg->maSecOptions.SetTrustedAuthors( maTrustedAuthors );
}
-ReadOnlyImage::ReadOnlyImage(Window* pParent, const ResId rResId) :
+XmlReadOnlyImage::XmlReadOnlyImage(Window* pParent, const ResId rResId) :
FixedImage(pParent, rResId)
{
SetImage( Image(XMLSEC_RES( RID_XMLSECTP_LOCK )));
}
-ReadOnlyImage::~ReadOnlyImage()
+XmlReadOnlyImage::~XmlReadOnlyImage()
{
}
-void ReadOnlyImage::RequestHelp( const HelpEvent& rHEvt )
+void XmlReadOnlyImage::RequestHelp( const HelpEvent& rHEvt )
{
if( Help::IsBalloonHelpEnabled() || Help::IsQuickHelpEnabled() )
{
@@ -451,7 +451,7 @@ void ReadOnlyImage::RequestHelp( const HelpEvent& rHEvt )
Rectangle aScreenRect( OutputToScreenPixel( aLogicPix.TopLeft() ),
OutputToScreenPixel( aLogicPix.BottomRight() ) );
- OUString aStr(ReadOnlyImage::GetHelpTip());
+ OUString aStr(XmlReadOnlyImage::GetHelpTip());
if ( Help::IsBalloonHelpEnabled() )
Help::ShowBalloon( this, rHEvt.GetMousePosPixel(), aScreenRect,
aStr );
@@ -462,7 +462,7 @@ void ReadOnlyImage::RequestHelp( const HelpEvent& rHEvt )
Window::RequestHelp( rHEvt );
}
-const OUString& ReadOnlyImage::GetHelpTip()
+const OUString& XmlReadOnlyImage::GetHelpTip()
{
static OUString aStr(XMLSEC_RES( RID_XMLSECTP_READONLY_CONFIG_TIP));
return aStr;