]> SALOME platform Git repositories - modules/hydro.git/commitdiff
Salome HOME
patch for correct compilation on Linux
authorasl <asl@opencascade.com>
Thu, 7 Nov 2013 11:57:18 +0000 (11:57 +0000)
committerasl <asl@opencascade.com>
Thu, 7 Nov 2013 11:57:18 +0000 (11:57 +0000)
src/HYDROGUI/HYDROGUI_DataBrowser.h
src/HYDROGUI/HYDROGUI_DataObject.h
src/HYDROGUI/HYDROGUI_NameValidator.h
src/HYDROGUI/HYDROGUI_Region.h
src/HYDROGUI/HYDROGUI_Zone.h

index 2d79a829e88bd54db392f79a4876b9ae1d448825..50a7753446faef4bb1cf8593b0ee0e4ea5b3d470 100644 (file)
@@ -46,7 +46,7 @@ public:
     \param theEntry - Entry of the object.
     \return data object.
   */
-  virtual SUIT_DataObject* findObject( const QString& ) const override;
+  virtual SUIT_DataObject* findObject( const QString& ) const;
 
 signals:
   void             dropped( const QList<SUIT_DataObject*>& theList, 
index a93963bd348db8ce8c59f1dc5f0493cd822f4377..41a7bca4a72f7e525434afece793dd1b2a2090e3 100644 (file)
@@ -159,7 +159,7 @@ public:
                              const QString& theName,
                              const QString& theParentEntry  );
     
-  bool isDropAccepted() const override { return true; }
+  bool isDropAccepted() const { return true; }
 };
 
 #endif
index 05ddc8b71d5594dc32f2cb96f2d5ab4abce06ee8..8eacd50ad3b912dd0a846274268bcac85456f459 100644 (file)
@@ -36,8 +36,8 @@ public:
   HYDROGUI_NameValidator( HYDROGUI_Module* theModule, QObject* parent = 0 );
   virtual ~HYDROGUI_NameValidator();
 
-  State validate ( QString & theName, int & thePos ) const override;
-  void  fixup ( QString & input ) const override;
+  State validate ( QString & theName, int & thePos ) const;
+  void  fixup ( QString & input ) const;
 
   void  setEditedObject( const Handle(HYDROData_Entity) theObj );
 
index e7fdf16df342eaaa8770277726b09d7032e5a441..b9e705d2006b5691546278793d90705552549dfe 100644 (file)
@@ -52,7 +52,7 @@ public:
                    Handle(HYDROData_Region) theData,
                    const QString& theParentEntry );
 
-  bool isDropAccepted() const override { return true; }
+  bool isDropAccepted() const { return true; }
 
   /**
    * Add zones to the region. 
index 4dca40d27ad013e3688e77c4101a0e7cc9323145..ee25b8023e3f2c262c0d9052381a0565bdd9c435 100644 (file)
@@ -53,17 +53,17 @@ public:
   /**
    * Returns the text for the specified column.
    */
-  QString     text( const int = NameId ) const override;
+  QString     text( const int = NameId ) const;
 
   /**
    * Returns the color for the specified column.
    */
-  QColor      color( const ColorRole theColorRole, const int theColumnId = NameId ) const override;
+  QColor      color( const ColorRole theColorRole, const int theColumnId = NameId ) const;
 
   /**
    * Return true because zones are draggable.
    */
-  bool        isDraggable() const override { return true; }
+  bool        isDraggable() const { return true; }
 
   /**
    * Returns true if it is a zone which needs merge of bathymetries.