--- as_assist.cpp 2002/11/20 19:37:27 1.7
+++ as_assist.cpp 2002/11/21 15:37:08 1.8
@@ -112,7 +112,7 @@
m_pFileopenact = new QAction(trUtf8("Open File"), QPixmap(s_kpcFileopen_xpm), trUtf8("&Open..."), CTRL+Key_O, this, "Open");
if (m_pFileopenact == NULL) // Sanity check
throw Genexcept("Main window file open action creation failed.");
- connect(m_pFileopenact, SIGNAL(activated()), this, SLOT(choose()));
+ connect(m_pFileopenact, SIGNAL(activated()), this, SLOT(chooseFile()));
const char *kszFileopentext = trUtf8("<p><img source=\"fileopen\"> "
"Click this button to open a <em>new file</em>."
"You can also select the <b>Open</b> command "
@@ -123,7 +123,7 @@
m_pFilesaveact = new QAction(trUtf8("Save File"), QPixmap(s_kpcFilesave_xpm), trUtf8("&Save"), CTRL+Key_S, this, "Save");
if (m_pFilesaveact == NULL) // Sanity check
throw Genexcept("Main window file save action creation failed.");
- connect(m_pFilesaveact, SIGNAL(activated()), this, SLOT(save()));
+ connect(m_pFilesaveact, SIGNAL(activated()), this, SLOT(saveFile()));
const char *kszFilesavetext = trUtf8("<p><img source=\"filesave\"> "
"Click this button to <em>save</em> the file you "
"are editing. You will be prompted for a file name.\n"
|