From 9cac6577496d0aa5ee22720239fcd18fcde85a02 Mon Sep 17 00:00:00 2001 From: Peter Foley Date: Sat, 23 Mar 2013 20:22:47 -0400 Subject: add cui to Library_merged Change-Id: I485426c0a0792e17bae5ef125d69f52827b469b2 --- xmlsecurity/source/dialogs/macrosecurity.cxx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'xmlsecurity/source') 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; -- cgit