Fix bug 82823, hard coded string

git-svn-id: svn://10.0.0.236/trunk@12528 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
blythe%netscape.com
1998-10-10 15:33:38 +00:00
parent d392ac652b
commit 52af6edc27
3 changed files with 5 additions and 2 deletions

View File

@@ -3089,6 +3089,7 @@ BEGIN
IDS_PAGESETUP_INCHES "Margins (Inches)"
IDS_PAGESETUP_CENTIMETERS "Margins (Centimeters)"
IDS_PAGESETUP_CM "cm"
IDS_MARGINENTRYERROR "The margin value entered was not valid. Try a smaller number."
END
STRINGTABLE DISCARDABLE

View File

@@ -338,8 +338,9 @@ void CPrintPageSetup::ShowPagePreview ( CClientDC & pdc )
void CPrintPageSetup::MarginError ( char * szTitle )
{
MessageBox (
"The margin value entered was not valid. Try a smaller number.",
MessageBox (
szLoadString(IDS_MARGINENTRYERROR),
szTitle, MB_OK | MB_ICONEXCLAMATION );
}

View File

@@ -805,6 +805,7 @@
#define IDC_COMPOSE_BCC 805
#define IDC_COMPOSE_NEWSGROUPS 807
#define IDC_COMPOSE_FOLLOWUP 809
#define IDS_MARGINENTRYERROR 810
#define IDC_COMPOSE_SUBJECT_TEXT 826
#define IDS_MESSAGEFORMAT 827
#define IDS_FORMAT_ASKME 828