Index: ossp-pkg/as/as-gui/as_assist.cpp RCS File: /v/ossp/cvs/ossp-pkg/as/as-gui/as_assist.cpp,v rcsdiff -q -kk '-r1.22' '-r1.23' -u '/v/ossp/cvs/ossp-pkg/as/as-gui/as_assist.cpp,v' 2>/dev/null --- as_assist.cpp 2002/11/26 19:33:37 1.22 +++ as_assist.cpp 2002/11/26 19:41:17 1.23 @@ -97,9 +97,9 @@ throw Genexcept("Main window file new action creation failed."); connect(m_pFilenewact, SIGNAL(activated()), this, SLOT(newDoc())); const char *kszFilenewtext = "

" - "Click this button to make
a " - "blank file. You can also
" - "select the New command
from " + "Click this button to make a " + "blank file. You can also " + "select the New command from " "the File menu.

"; m_pFilenewact->setWhatsThis(kszFilenewtext); @@ -109,9 +109,9 @@ throw Genexcept("Main window file open action creation failed."); connect(m_pFileopenact, SIGNAL(activated()), this, SLOT(chooseFile())); const char *kszFileopentext = "

" - "Click this button to open
a " - "new file. You can also select
" - "the Open command from the
" + "Click this button to open a " + "new file. You can also select " + "the Open command from the " "File menu.

"; m_pFileopenact->setWhatsThis(kszFileopentext); @@ -121,10 +121,10 @@ throw Genexcept("Main window file save action creation failed."); connect(m_pFilesaveact, SIGNAL(activated()), this, SLOT(saveFile())); const char *kszFilesavetext = "

" - "Click this button to save
" - "the file you are editing. You
will be " - "prompted for a file
name. You can also " - "select
the Save command from
" + "Click this button to save " + "the file you are editing. You will be " + "prompted for a file name. You can also " + "select the Save command from " "the File menu.

"; m_pFilesaveact->setWhatsThis(kszFilesavetext); @@ -153,7 +153,7 @@ throw Genexcept("Main window cut edit action creation failed."); connect(m_pCutact, SIGNAL(activated()), this, SLOT(cutEntry())); const char *kszCuttext = "

" - "Click this button to cut an entry." + "Click this button to cut an entry. " "You can also select the Cut command " "from the Edit menu.

"; m_pCutact->setWhatsThis(kszCuttext); @@ -164,7 +164,7 @@ throw Genexcept("Main window copy edit action creation failed."); connect(m_pCopyact, SIGNAL(activated()), this, SLOT(copyEntry())); const char *kszCopytext = "

" - "Click this button to copy an entry." + "Click this button to copy an entry. " "You can also select the Copy command " "from the Edit menu.

"; m_pCopyact->setWhatsThis(kszCopytext); @@ -175,7 +175,7 @@ throw Genexcept("Main window paste edit action creation failed."); connect(m_pPasteact, SIGNAL(activated()), this, SLOT(pasteEntry())); const char *kszPastetext = "

" - "Click this button to paste an entry." + "Click this button to paste an entry. " "You can also select the Paste command " "from the Edit menu.

"; m_pPasteact->setWhatsThis(kszPastetext); @@ -186,7 +186,7 @@ throw Genexcept("Main window add row action creation failed."); connect(m_pAddrowact, SIGNAL(activated()), this, SLOT(addEntry())); const char *kszAddrowtext = "

" - "Click this button to add a new row." + "Click this button to add a new row. " "You can also select the Add command " "from the Edit menu.

"; m_pAddrowact->setWhatsThis(kszAddrowtext); @@ -197,7 +197,7 @@ throw Genexcept("Main window delete row action creation failed."); connect(m_pDelrowact, SIGNAL(activated()), this, SLOT(delEntry())); const char *kszDelrowtext = "

" - "Click this button to delete a row." + "Click this button to delete a row. " "You can also select the Delete command " "from the Edit menu.

"; m_pDelrowact->setWhatsThis(kszDelrowtext); @@ -208,9 +208,9 @@ throw Genexcept("Main window write data action creation failed."); connect(m_pWritedataact, SIGNAL(activated()), this, SLOT(writeEntry())); const char *kszWritedatatext = "

" - "Click this button to write out your accounting data." - "You can also select the Save command " - "from the File menu.

"; + "Click this button to write out " + "your accounting data. You can also select the " + "Save command from the File menu.

"; m_pWritedataact->setWhatsThis(kszWritedatatext); }