--- 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 = "<p><img source=\"filenew\"> "
- "Click this button to make<br>a "
- "<em>blank file</em>. You can also<br>"
- "select the <b>New</b> command<br>from "
+ "Click this button to make a "
+ "<em>blank file</em>. You can also "
+ "select the <b>New</b> command from "
"the <b>File</b> menu.</p>";
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 = "<p><img source=\"fileopen\"> "
- "Click this button to open<br>a "
- "<em>new file</em>. You can also select<br>"
- "the <b>Open</b> command from the<br>"
+ "Click this button to open a "
+ "<em>new file</em>. You can also select "
+ "the <b>Open</b> command from the "
"<b>File</b> menu.</p>";
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 = "<p><img source=\"filesave\"> "
- "Click this button to <em>save</em><br>"
- "the file you are editing. You<br>will be "
- "prompted for a file<br>name. You can also "
- "select<br>the<b> Save</b> command from<br>"
+ "Click this button to <em>save</em> "
+ "the file you are editing. You will be "
+ "prompted for a file name. You can also "
+ "select the<b> Save</b> command from "
"the <b>File</b> menu.</p>";
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 = "<p><img source=\"cut\"> "
- "Click this button to cut an <em>entry</em>."
+ "Click this button to cut an <em>entry</em>. "
"You can also select the <b>Cut</b> command "
"from the <b>Edit</b> menu.</p>";
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 = "<p><img source=\"copy\"> "
- "Click this button to copy an <em>entry</em>."
+ "Click this button to copy an <em>entry</em>. "
"You can also select the <b>Copy</b> command "
"from the <b>Edit</b> menu.</p>";
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 = "<p><img source=\"paste\"> "
- "Click this button to paste an <em>entry</em>."
+ "Click this button to paste an <em>entry</em>. "
"You can also select the <b>Paste</b> command "
"from the <b>Edit</b> menu.</p>";
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 = "<p><img source=\"rowadd\"> "
- "Click this button to add a <em>new row</em>."
+ "Click this button to add a <em>new row</em>. "
"You can also select the <b>Add</b> command "
"from the <b>Edit</b> menu.</p>";
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 = "<p><img source=\"rowdel\"> "
- "Click this button to delete a <em>row</em>."
+ "Click this button to delete a <em>row</em>. "
"You can also select the <b>Delete</b> command "
"from the <b>Edit</b> menu.</p>";
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 = "<p><img source=\"ossplogo\"> "
- "Click this button to <em>write out</em> your accounting data."
- "You can also select the <b>Save</b> command "
- "from the <b>File</b> menu.</p>";
+ "Click this button to <em>write out</em> "
+ "your accounting data. You can also select the "
+ "<b>Save</b> command from the <b>File</b> menu.</p>";
m_pWritedataact->setWhatsThis(kszWritedatatext);
}
|