~ubuntu-branches/ubuntu/precise/fritzing/precise

« back to all changes in this revision

Viewing changes to src/connectors/ercdata.h

  • Committer: Bazaar Package Importer
  • Author(s): Georges Khaznadar
  • Date: 2011-08-26 10:11:05 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20110826101105-w5hmn7zcf93ig5v6
Tags: 0.6.3b-1
* upgrapded to the newer upstream version
* parameters of the function GraphicsUtils::distanceFromLine in 
  src/svg/groundplanegenerator.cpp:767 are now declared as doubles,
  which Closes: #636441
* the new version fixes src/utils/folderutils.cpp, which
  Closes: #636061

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*******************************************************************
2
2
 
3
3
Part of the Fritzing project - http://fritzing.org
4
 
Copyright (c) 2007-2010 Fachhochschule Potsdam - http://fh-potsdam.de
 
4
Copyright (c) 2007-2011 Fachhochschule Potsdam - http://fh-potsdam.de
5
5
 
6
6
Fritzing is free software: you can redistribute it and/or modify
7
7
it under the terms of the GNU General Public License as published by
18
18
 
19
19
********************************************************************
20
20
 
21
 
$Revision: 4183 $:
 
21
$Revision: 5309 $:
22
22
$Author: cohen@irascible.com $:
23
 
$Date: 2010-05-06 22:30:19 +0200 (Thu, 06 May 2010) $
 
23
$Date: 2011-07-30 21:17:22 +0200 (Sat, 30 Jul 2011) $
24
24
 
25
25
********************************************************************/
26
26
 
37
37
        ValidReal();
38
38
 
39
39
        bool isValid();
40
 
        qreal value();
41
 
        void setValue(qreal);
 
40
        double value();
 
41
        void setValue(double);
42
42
        bool setValue(const QString &);
43
43
 
44
44
protected:
45
45
        bool m_ok;
46
 
        qreal m_value;
 
46
        double m_value;
47
47
 
48
48
};
49
49