made some lines smaller

This commit is contained in:
Menelaos Karavelas 2003-03-14 14:09:50 +00:00
parent 8cc9ba6ced
commit 73564b6260
1 changed files with 5 additions and 3 deletions

View File

@ -69,6 +69,7 @@ signals:
private:
void initActions()
{
QString str;
QPixmap openIcon, saveIcon, newIcon, printIcon;
newIcon = QPixmap(filenew);
openIcon = QPixmap(fileopen);
@ -95,10 +96,11 @@ private:
fileSaveAs = new QAction(tr("Save File As"), saveIcon, tr("Save &as..."),
0, this);
fileSaveAs->setStatusTip(tr("Saves the actual document under a new filename"));
QString _save_as =
str = "Saves the actual document under a new filename";
fileSaveAs->setStatusTip(tr(str));
str =
tr("Save As\n\nSaves the actual document under a new filename");
fileSaveAs->setWhatsThis(_save_as);
fileSaveAs->setWhatsThis(str);
connect(fileSaveAs, SIGNAL(activated()), this, SLOT(slotFileSaveAs()));
#if 0
fileSaveAs = new QAction(tr("Save File As"), tr("Save &as..."), 0, this);