]> SALOME platform Git repositories - modules/gui.git/commitdiff
Salome HOME
The paste enable correction. Fixes a regression in the last commit. BR_HDF_dev_table
authornds <nds@opencascade.com>
Tue, 9 Apr 2013 06:04:57 +0000 (06:04 +0000)
committernds <nds@opencascade.com>
Tue, 9 Apr 2013 06:04:57 +0000 (06:04 +0000)
src/TableViewer/TableViewer_ViewWindow.cxx

index 2ee34b46e009ef4a3cb80339d001173c26c8d8d0..efc34b34c150d25d618b5c483188d00ac0d09568 100755 (executable)
@@ -291,8 +291,8 @@ void TableViewer_ViewWindow::selectionChanged()
 {
   QModelIndexList anItems = myTable->getSelectedIndexes();
   bool anEnable = anItems.count() > 0;
-  bool aCopyEnable = anEnable && myCopyLst.count() > 0,
-       aPasteEnable = anEnable;
+  bool aCopyEnable = anEnable,
+       aPasteEnable = anEnable && myCopyLst.count() > 0;
   QModelIndexList::const_iterator anIt = anItems.begin(), aLast = anItems.end();
   int aRow, aCol;
   for ( anIt = anItems.begin(); anIt != aLast; ++anIt ) {