X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FPartSet%2FPartSet_EditLine.h;h=c043dc08a5008567c4ef67fba2f2f5b3b344a60c;hb=02bc870879ae19215d5ef6f721acd5b12d245473;hp=f389a45f9ec5509aa1ea0b4cf3886f74d1313143;hpb=8b96b3bed4a6e6cc026dd36e39c5bbeb0a2ee61e;p=modules%2Fshaper.git diff --git a/src/PartSet/PartSet_EditLine.h b/src/PartSet/PartSet_EditLine.h index f389a45f9..c043dc08a 100644 --- a/src/PartSet/PartSet_EditLine.h +++ b/src/PartSet/PartSet_EditLine.h @@ -16,15 +16,18 @@ class QWidget; /*! \class PartSet_EditLine * \brief The class to give an editor to modify a real value -*/ + */ class PARTSET_EXPORT PartSet_EditLine : public QObject { - Q_OBJECT -public: +Q_OBJECT + public: /// Constructor PartSet_EditLine(QWidget* theParent); /// Destructor - virtual ~PartSet_EditLine() {}; + virtual ~PartSet_EditLine() + { + } + ; /// Show the editor in the given global position /// \param thePoint a position @@ -43,17 +46,17 @@ signals: /// \param theValue the editor value void stopped(double theValue); -protected: + protected: /// Returns the editor value /// \return the real value double getValue() const; -protected slots: + protected slots: /// Slot to check the editing stop void onStopEditing(); -protected: - QLineEdit* myEditor; /// the value editor + protected: + QLineEdit* myEditor; /// the value editor }; #endif