Skip to content

Commit 2232d9f

Browse files
author
Pierre Raybaut
committed
Added licence headers
1 parent b27941e commit 2232d9f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+169
-28
lines changed

qwt/__init__.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# -*- coding: utf-8 -*-
2+
#
3+
# Copyright © 2014-2015 Pierre Raybaut
4+
# Licensed under the terms of the MIT License
5+
# (see qwt/LICENSE for details)
16

27
__version__ = QWT_VERSION_STR = '6.1.2alpha1'
38

qwt/abstract_legend.py

Lines changed: 0 additions & 4 deletions
This file was deleted.

qwt/clipper.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
# -*- coding: utf-8 -*-
2+
#
3+
# Copyright © 2014-2015 Pierre Raybaut
4+
# Licensed under the terms of the MIT License
5+
# (see qwt/LICENSE for details)
26

37
from qwt.qt.QtGui import QPolygon, QPolygonF
48
from qwt.qt.QtCore import QRect, QRectF

qwt/color_map.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
# -*- coding: utf-8 -*-
2+
#
3+
# Copyright © 2014-2015 Pierre Raybaut
4+
# Licensed under the terms of the MIT License
5+
# (see qwt/LICENSE for details)
26

37
from qwt.qt.QtGui import QColor, qRed, qGreen, qBlue, qRgb, qRgba, qAlpha
48
from qwt.qt.QtCore import Qt, qIsNaN

qwt/column_symbol.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
# -*- coding: utf-8 -*-
2+
#
3+
# Copyright © 2014-2015 Pierre Raybaut
4+
# Licensed under the terms of the MIT License
5+
# (see qwt/LICENSE for details)
26

37
from qwt.interval import QwtInterval
48
from qwt.painter import QwtPainter

qwt/curve_fitter.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
# -*- coding: utf-8 -*-
2+
#
3+
# Copyright © 2014-2015 Pierre Raybaut
4+
# Licensed under the terms of the MIT License
5+
# (see qwt/LICENSE for details)
26

37
from qwt.spline import QwtSpline
48

@@ -21,7 +25,6 @@ def __init__(self):
2125

2226

2327
class QwtSplineCurveFitter(QwtCurveFitter):
24-
2528
# enum FitMode
2629
Auto, Spline, ParametricSpline = range(3)
2730

qwt/dyngrid_layout.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
# -*- coding: utf-8 -*-
2+
#
3+
# Copyright © 2014-2015 Pierre Raybaut
4+
# Licensed under the terms of the MIT License
5+
# (see qwt/LICENSE for details)
26

37
from qwt.qt.QtGui import QLayout
48
from qwt.qt.QtCore import Qt, QRect, QSize

qwt/graphic.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
# -*- coding: utf-8 -*-
2+
#
3+
# Copyright © 2014-2015 Pierre Raybaut
4+
# Licensed under the terms of the MIT License
5+
# (see qwt/LICENSE for details)
26

37
from qwt.null_paintdevice import QwtNullPaintDevice
48
from qwt.painter_command import QwtPainterCommand

qwt/interval.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
# -*- coding: utf-8 -*-
2+
#
3+
# Copyright © 2014-2015 Pierre Raybaut
4+
# Licensed under the terms of the MIT License
5+
# (see qwt/LICENSE for details)
26

37

48
class QwtInterval(object):

qwt/legend.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
# -*- coding: utf-8 -*-
2+
#
3+
# Copyright © 2014-2015 Pierre Raybaut
4+
# Licensed under the terms of the MIT License
5+
# (see qwt/LICENSE for details)
26

37
from qwt.legend_data import QwtLegendData
48
from qwt.dyngrid_layout import QwtDynGridLayout

0 commit comments

Comments
 (0)