X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=pv%2Fprop%2Fdouble.hpp;h=666ece979a30f973969b32097073d856aad1078c;hb=6f925ba9d6faf1077b73c5a5808259576081716a;hp=dc119bdb36e40c421421869e3e9610cc700157cb;hpb=c6246dc56ed01d7e99aa65ab88b8c191300b1ebd;p=pulseview.git diff --git a/pv/prop/double.hpp b/pv/prop/double.hpp index dc119bd..666ece9 100644 --- a/pv/prop/double.hpp +++ b/pv/prop/double.hpp @@ -14,8 +14,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * along with this program; if not, see . */ #ifndef PULSEVIEW_PV_PROP_DOUBLE_HPP @@ -27,6 +26,8 @@ #include "property.hpp" +using std::pair; + class QDoubleSpinBox; namespace pv { @@ -38,7 +39,7 @@ class Double : public Property public: Double(QString name, int decimals, QString suffix, - boost::optional< std::pair > range, + boost::optional< pair > range, boost::optional step, Getter getter, Setter setter); @@ -55,7 +56,7 @@ private Q_SLOTS: private: const int decimals_; const QString suffix_; - const boost::optional< std::pair > range_; + const boost::optional< pair > range_; const boost::optional step_; QDoubleSpinBox *spin_box_;