--- as_assist.cpp 2002/11/26 23:26:07 1.29
+++ as_assist.cpp 2002/11/27 17:11:06 1.30
@@ -192,7 +192,7 @@
m_pAddrowact->setWhatsThis(kszAddrowtext);
// Delete data row action
- m_pDelrowact = new QAction(trUtf8("Del Row"), QPixmap(s_kpcRowdel_xpm), trUtf8("&Delete row"), 0, this, "Delrow");
+ m_pDelrowact = new QAction(trUtf8("Delete Row"), QPixmap(s_kpcRowdel_xpm), trUtf8("&Delete row"), 0, this, "Delrow");
if (m_pDelrowact == NULL) // Sanity check
throw Genexcept("Main window delete row action creation failed.");
connect(m_pDelrowact, SIGNAL(activated()), this, SLOT(delEntry()));
@@ -397,7 +397,7 @@
void Titraqform::setupTable(void)
{
// The table itself
- m_pMaintable = new QTable(m_pCenframe, "Maintable");
+ m_pMaintable = new Titable(m_pCenframe, "Maintable");
if (m_pMaintable == NULL) // Sanity check
throw Genexcept("Main window table creation failed.");
m_pMaintable->setNumCols(g_knCols);
|