OSSP CVS Repository

ossp - Check-in [3850]
Not logged in
[Honeypot]  [Browse]  [Home]  [Login]  [Reports
[Search]  [Ticket]  [Timeline
  [Patchset]  [Tagging/Branching

Check-in Number: 3850
Date: 2002-Dec-09 17:44:37 (local)
2002-Dec-09 16:44:37 (UTC)
User:ms
Branch:
Comment: Disable help menu until implemented, simplify click condition, and adjust autoconf requirements.
Tickets:
Inspections:
Files:
ossp-pkg/as/as-gui/as_assist.cpp      1.51 -> 1.52     2 inserted, 1 deleted
ossp-pkg/as/as-gui/as_table.cpp      1.6 -> 1.7     3 inserted, 3 deleted
ossp-pkg/as/as-gui/configure.in      1.10 -> 1.11     1 inserted, 1 deleted
ossp-pkg/as/as-gui/devtool.conf      1.6 -> 1.7     1 inserted, 1 deleted

ossp-pkg/as/as-gui/as_assist.cpp 1.51 -> 1.52

--- as_assist.cpp        2002/12/05 18:03:53     1.51
+++ as_assist.cpp        2002/12/09 16:44:37     1.52
@@ -373,7 +373,8 @@
     if (pHelppopup == NULL) // Sanity check
         throw Genexcept("Main window help popup creation failed.");
     m_pMenubar->insertItem(trUtf8("&Help"), pHelppopup);
-    pHelppopup->insertItem(trUtf8("&Contents"), this, SLOT(helpContents()), Key_F1);
+    nMenuid = pHelppopup->insertItem(trUtf8("&Contents"), this, SLOT(helpContents()), Key_F1);
+    pHelppopup->setItemEnabled(nMenuid, false);
     pHelppopup->insertSeparator();
     pHelppopup->insertItem(trUtf8("About &Titraq"), this, SLOT(aboutTitraq()));
     pHelppopup->insertItem(trUtf8("About &OSSP"), this, SLOT(aboutOSSP()));


ossp-pkg/as/as-gui/as_table.cpp 1.6 -> 1.7

--- as_table.cpp 2002/12/06 16:16:07     1.6
+++ as_table.cpp 2002/12/09 16:44:37     1.7
@@ -39,9 +39,9 @@
 {
     if (pObject == horizontalHeader() && pEvent->type() == QEvent::MouseButtonDblClick)
         return true;
-    if (pEvent->type() == QEvent::MouseButtonPress &&
-        (((QMouseEvent *)pEvent)->button() == QMouseEvent::RightButton) ||
-        (((QMouseEvent *)pEvent)->button() == QMouseEvent::MidButton))
+    if (pEvent->type() == QEvent::MouseButtonPress &&   // Ignore mid, right clicks
+        ((QMouseEvent *)pEvent)->button() == QMouseEvent::RightButton ||
+        ((QMouseEvent *)pEvent)->button() == QMouseEvent::MidButton)
         return true;
     else if (pEvent->type() == QEvent::KeyPress) {
         if (((QKeyEvent *)pEvent)->key() == Qt::Key_Tab) {          // Handle tab key


ossp-pkg/as/as-gui/configure.in 1.10 -> 1.11

--- configure.in 2002/12/03 11:54:03     1.10
+++ configure.in 2002/12/09 16:44:37     1.11
@@ -30,7 +30,7 @@
 ##
 
 dnl Version requirement and information
-AC_PREREQ(2.56)
+AC_PREREQ(2.53)
 AC_REVISION(1.0)
 AC_INIT
 


ossp-pkg/as/as-gui/devtool.conf 1.6 -> 1.7

--- devtool.conf 2002/12/04 23:28:23     1.6
+++ devtool.conf 2002/12/09 16:44:37     1.7
@@ -4,7 +4,7 @@
 
 %autogen
     @autogen shtool   1.6.2 "1.6.*" all
-    @autogen autoconf 2.56  "2.5[3-9]*"
+    @autogen autoconf 2.57  "2.5[3-9]*"
 
 %autoclean
     @autoclean shtool

CVSTrac 2.0.1