summaryrefslogtreecommitdiffstats
path: root/install-sh
blob: 0ec27bcd488da5cad6ead13d70accbdbc40d31ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
#!/bin/sh
#
# install - install a program, script, or datafile
#
# This originates from X11R5 (mit/util/scripts/install.sh), which was
# later released in X11R6 (xc/config/util/install.sh) with the
# following copyright and license.
#
# Copyright (C) 1994 X Consortium
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
# deal in the Software without restriction, including without limitation the
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
# sell copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
# X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
# AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-
# TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
# Except as contained in this notice, the name of the X Consortium shall not
# be used in advertising or otherwise to promote the sale, use or other deal-
# ings in this Software without prior written authorization from the X Consor-
# tium.
#
#
# FSF changes to this file are in the public domain.
#
# Calling this script install-sh is preferred over install.sh, to prevent
# `make' implicit rules from creating a file called install from it
# when there is no Makefile.
#
# This script is compatible with the BSD install script, but was written
# from scratch.  It can only install one file at a time, a restriction
# shared with many OS's install programs.


# set DOITPROG to echo to test this script

# Don't use :- since 4.3BSD and earlier shells don't like it.
doit="${DOITPROG-}"


# put in absolute paths if you don't have them in your path; or use env. vars.

mvprog="${MVPROG-mv}"
cpprog="${CPPROG-cp}"
chmodprog="${CHMODPROG-chmod}"
chownprog="${CHOWNPROG-chown}"
chgrpprog="${CHGRPPROG-chgrp}"
stripprog="${STRIPPROG-strip}"
rmprog="${RMPROG-rm}"
mkdirprog="${MKDIRPROG-mkdir}"

transformbasename=""
transform_arg=""
instcmd="$mvprog"
chmodcmd="$chmodprog 0755"
chowncmd=""
chgrpcmd=""
stripcmd=""
rmcmd="$rmprog -f"
mvcmd="$mvprog"
src=""
dst=""
dir_arg=""

while [ x"$1" != x ]; do
    case $1 in
	-c) instcmd=$cpprog
	    shift
	    continue;;

	-d) dir_arg=true
	    shift
	    continue;;

	-m) chmodcmd="$chmodprog $2"
	    shift
	    shift
	    continue;;

	-o) chowncmd="$chownprog $2"
	    shift
	    shift
	    continue;;

	-g) chgrpcmd="$chgrpprog $2"
	    shift
	    shift
	    continue;;

	-s) stripcmd=$stripprog
	    shift
	    continue;;

	-t=*) transformarg=`echo $1 | sed 's/-t=//'`
	    shift
	    continue;;

	-b=*) transformbasename=`echo $1 | sed 's/-b=//'`
	    shift
	    continue;;

	*)  if [ x"$src" = x ]
	    then
		src=$1
	    else
		# this colon is to work around a 386BSD /bin/sh bug
		:
		dst=$1
	    fi
	    shift
	    continue;;
    esac
done

if [ x"$src" = x ]
then
	echo "$0: no input file specified" >&2
	exit 1
else
	:
fi

if [ x"$dir_arg" != x ]; then
	dst=$src
	src=""

	if [ -d "$dst" ]; then
		instcmd=:
		chmodcmd=""
	else
		instcmd=$mkdirprog
	fi
else

# Waiting for this to be detected by the "$instcmd $src $dsttmp" command
# might cause directories to be created, which would be especially bad
# if $src (and thus $dsttmp) contains '*'.

	if [ -f "$src" ] || [ -d "$src" ]
	then
		:
	else
		echo "$0: $src does not exist" >&2
		exit 1
	fi

	if [ x"$dst" = x ]
	then
		echo "$0: no destination specified" >&2
		exit 1
	else
		:
	fi

# If destination is a directory, append the input filename; if your system
# does not like double slashes in filenames, you may need to add some logic

	if [ -d "$dst" ]
	then
		dst=$dst/`basename "$src"`
	else
		:
	fi
fi

## this sed command emulates the dirname command
dstdir=`echo "$dst" | sed -e 's,[^/]*$,,;s,/$,,;s,^$,.,'`

# Make sure that the destination directory exists.
#  this part is taken from Noah Friedman's mkinstalldirs script

# Skip lots of stat calls in the usual case.
if [ ! -d "$dstdir" ]; then
defaultIFS='
	'
IFS="${IFS-$defaultIFS}"

oIFS=$IFS
# Some sh's can't handle IFS=/ for some reason.
IFS='%'
set - `echo "$dstdir" | sed -e 's@/@%@g' -e 's@^%@/@'`
IFS=$oIFS

pathcomp=''

while [ $# -ne 0 ] ; do
	pathcomp=$pathcomp$1
	shift

	if [ ! -d "$pathcomp" ] ;
        then
		$mkdirprog "$pathcomp"
	else
		:
	fi

	pathcomp=$pathcomp/
done
fi

if [ x"$dir_arg" != x ]
then
	$doit $instcmd "$dst" &&

	if [ x"$chowncmd" != x ]; then $doit $chowncmd "$dst"; else : ; fi &&
	if [ x"$chgrpcmd" != x ]; then $doit $chgrpcmd "$dst"; else : ; fi &&
	if [ x"$stripcmd" != x ]; then $doit $stripcmd "$dst"; else : ; fi &&
	if [ x"$chmodcmd" != x ]; then $doit $chmodcmd "$dst"; else : ; fi
else

# If we're going to rename the final executable, determine the name now.

	if [ x"$transformarg" = x ]
	then
		dstfile=`basename "$dst"`
	else
		dstfile=`basename "$dst" $transformbasename |
			sed $transformarg`$transformbasename
	fi

# don't allow the sed command to completely eliminate the filename

	if [ x"$dstfile" = x ]
	then
		dstfile=`basename "$dst"`
	else
		:
	fi

# Make a couple of temp file names in the proper directory.

	dsttmp=$dstdir/#inst.$$#
	rmtmp=$dstdir/#rm.$$#

# Trap to clean up temp files at exit.

	trap 'status=$?; rm -f "$dsttmp" "$rmtmp" && exit $status' 0
	trap '(exit $?); exit' 1 2 13 15

# Move or copy the file name to the temp name

	$doit $instcmd "$src" "$dsttmp" &&

# and set any options; do chmod last to preserve setuid bits

# If any of these fail, we abort the whole thing.  If we want to
# ignore errors from any of these, just make sure not to ignore
# errors from the above "$doit $instcmd $src $dsttmp" command.

	if [ x"$chowncmd" != x ]; then $doit $chowncmd "$dsttmp"; else :;fi &&
	if [ x"$chgrpcmd" != x ]; then $doit $chgrpcmd "$dsttmp"; else :;fi &&
	if [ x"$stripcmd" != x ]; then $doit $stripcmd "$dsttmp"; else :;fi &&
	if [ x"$chmodcmd" != x ]; then $doit $chmodcmd "$dsttmp"; else :;fi &&

# Now remove or move aside any old file at destination location.  We try this
# two ways since rm can't unlink itself on some systems and the destination
# file might be busy for other reasons.  In this case, the final cleanup
# might fail but the new file should still install successfully.

{
	if [ -f "$dstdir/$dstfile" ]
	then
		$doit $rmcmd -f "$dstdir/$dstfile" 2>/dev/null ||
		$doit $mvcmd -f "$dstdir/$dstfile" "$rmtmp" 2>/dev/null ||
		{
		  echo "$0: cannot unlink or rename $dstdir/$dstfile" >&2
		  (exit 1); exit
		}
	else
		:
	fi
} &&

# Now rename the file to the real destination.

	$doit $mvcmd "$dsttmp" "$dstdir/$dstfile"

fi &&

# The final little trick to "correctly" pass the exit status to the exit trap.

{
	(exit 0); exit
}
| 26 +++--- doc/src/emb-differences.qdoc | 26 +++--- doc/src/emb-envvars.qdoc | 26 +++--- doc/src/emb-features.qdoc | 26 +++--- doc/src/emb-fonts.qdoc | 26 +++--- doc/src/emb-framebuffer-howto.qdoc | 26 +++--- doc/src/emb-install.qdoc | 26 +++--- doc/src/emb-makeqpf.qdoc | 26 +++--- doc/src/emb-performance.qdoc | 26 +++--- doc/src/emb-pointer.qdoc | 26 +++--- doc/src/emb-porting.qdoc | 26 +++--- doc/src/emb-qvfb.qdoc | 26 +++--- doc/src/emb-running.qdoc | 26 +++--- doc/src/emb-vnc.qdoc | 26 +++--- doc/src/eventsandfilters.qdoc | 26 +++--- doc/src/examples-overview.qdoc | 26 +++--- doc/src/examples.qdoc | 26 +++--- doc/src/examples/2dpainting.qdoc | 26 +++--- doc/src/examples/activeqt/comapp.qdoc | 26 +++--- doc/src/examples/activeqt/dotnet.qdoc | 26 +++--- doc/src/examples/activeqt/hierarchy.qdoc | 26 +++--- doc/src/examples/activeqt/menus.qdoc | 26 +++--- doc/src/examples/activeqt/multiple.qdoc | 26 +++--- doc/src/examples/activeqt/opengl.qdoc | 26 +++--- doc/src/examples/activeqt/qutlook.qdoc | 26 +++--- doc/src/examples/activeqt/simple.qdoc | 26 +++--- doc/src/examples/activeqt/webbrowser.qdoc | 26 +++--- doc/src/examples/activeqt/wrapper.qdoc | 26 +++--- doc/src/examples/addressbook.qdoc | 26 +++--- doc/src/examples/ahigl.qdoc | 26 +++--- doc/src/examples/analogclock.qdoc | 26 +++--- doc/src/examples/application.qdoc | 26 +++--- doc/src/examples/arrowpad.qdoc | 26 +++--- doc/src/examples/basicdrawing.qdoc | 26 +++--- doc/src/examples/basicgraphicslayouts.qdoc | 26 +++--- doc/src/examples/basiclayouts.qdoc | 26 +++--- doc/src/examples/basicsortfiltermodel.qdoc | 26 +++--- doc/src/examples/blockingfortuneclient.qdoc | 26 +++--- doc/src/examples/borderlayout.qdoc | 26 +++--- doc/src/examples/broadcastreceiver.qdoc | 26 +++--- doc/src/examples/broadcastsender.qdoc | 26 +++--- doc/src/examples/cachedtable.qdoc | 26 +++--- doc/src/examples/calculator.qdoc | 26 +++--- doc/src/examples/calculatorbuilder.qdoc | 26 +++--- doc/src/examples/calculatorform.qdoc | 26 +++--- doc/src/examples/calendar.qdoc | 26 +++--- doc/src/examples/calendarwidget.qdoc | 26 +++--- doc/src/examples/capabilitiesexample.qdoc | 26 +++--- doc/src/examples/charactermap.qdoc | 26 +++--- doc/src/examples/chart.qdoc | 26 +++--- doc/src/examples/classwizard.qdoc | 26 +++--- doc/src/examples/codecs.qdoc | 26 +++--- doc/src/examples/codeeditor.qdoc | 26 +++--- doc/src/examples/collidingmice-example.qdoc | 26 +++--- doc/src/examples/coloreditorfactory.qdoc | 26 +++--- doc/src/examples/combowidgetmapper.qdoc | 26 +++--- doc/src/examples/completer.qdoc | 26 +++--- doc/src/examples/complexpingpong.qdoc | 26 +++--- doc/src/examples/concentriccircles.qdoc | 26 +++--- doc/src/examples/configdialog.qdoc | 26 +++--- doc/src/examples/containerextension.qdoc | 26 +++--- doc/src/examples/context2d.qdoc | 26 +++--- doc/src/examples/customcompleter.qdoc | 26 +++--- doc/src/examples/customsortfiltermodel.qdoc | 26 +++--- doc/src/examples/customtype.qdoc | 26 +++--- doc/src/examples/customtypesending.qdoc | 26 +++--- doc/src/examples/customwidgetplugin.qdoc | 26 +++--- doc/src/examples/dbscreen.qdoc | 26 +++--- doc/src/examples/dbus-chat.qdoc | 26 +++--- doc/src/examples/dbus-listnames.qdoc | 26 +++--- doc/src/examples/dbus-remotecontrolledcar.qdoc | 26 +++--- doc/src/examples/defaultprototypes.qdoc | 26 +++--- doc/src/examples/delayedencoding.qdoc | 26 +++--- doc/src/examples/diagramscene.qdoc | 26 +++--- doc/src/examples/digitalclock.qdoc | 26 +++--- doc/src/examples/dirview.qdoc | 26 +++--- doc/src/examples/dockwidgets.qdoc | 26 +++--- doc/src/examples/dombookmarks.qdoc | 26 +++--- doc/src/examples/draganddroppuzzle.qdoc | 26 +++--- doc/src/examples/dragdroprobot.qdoc | 26 +++--- doc/src/examples/draggableicons.qdoc | 26 +++--- doc/src/examples/draggabletext.qdoc | 26 +++--- doc/src/examples/drilldown.qdoc | 26 +++--- doc/src/examples/dropsite.qdoc | 26 +++--- doc/src/examples/dynamiclayouts.qdoc | 26 +++--- doc/src/examples/echoplugin.qdoc | 26 +++--- doc/src/examples/editabletreemodel.qdoc | 26 +++--- doc/src/examples/elasticnodes.qdoc | 26 +++--- doc/src/examples/extension.qdoc | 26 +++--- doc/src/examples/fancybrowser.qdoc | 26 +++--- doc/src/examples/filetree.qdoc | 26 +++--- doc/src/examples/findfiles.qdoc | 26 +++--- doc/src/examples/flowlayout.qdoc | 26 +++--- doc/src/examples/fontsampler.qdoc | 26 +++--- doc/src/examples/formextractor.qdoc | 26 +++--- doc/src/examples/fortuneclient.qdoc | 26 +++--- doc/src/examples/fortuneserver.qdoc | 26 +++--- doc/src/examples/framebufferobject.qdoc | 26 +++--- doc/src/examples/framebufferobject2.qdoc | 26 +++--- doc/src/examples/fridgemagnets.qdoc | 26 +++--- doc/src/examples/frozencolumn.qdoc | 26 +++--- doc/src/examples/ftp.qdoc | 26 +++--- doc/src/examples/globalVariables.qdoc | 26 +++--- doc/src/examples/googlechat.qdoc | 26 +++--- doc/src/examples/googlesuggest.qdoc | 26 +++--- doc/src/examples/grabber.qdoc | 26 +++--- doc/src/examples/groupbox.qdoc | 26 +++--- doc/src/examples/hellogl.qdoc | 26 +++--- doc/src/examples/helloscript.qdoc | 26 +++--- doc/src/examples/hellotr.qdoc | 26 +++--- doc/src/examples/http.qdoc | 26 +++--- doc/src/examples/i18n.qdoc | 26 +++--- doc/src/examples/icons.qdoc | 26 +++--- doc/src/examples/imagecomposition.qdoc | 26 +++--- doc/src/examples/imageviewer.qdoc | 26 +++--- doc/src/examples/itemviewspuzzle.qdoc | 26 +++--- doc/src/examples/licensewizard.qdoc | 26 +++--- doc/src/examples/lineedits.qdoc | 26 +++--- doc/src/examples/localfortuneclient.qdoc | 26 +++--- doc/src/examples/localfortuneserver.qdoc | 26 +++--- doc/src/examples/loopback.qdoc | 26 +++--- doc/src/examples/mandelbrot.qdoc | 26 +++--- doc/src/examples/masterdetail.qdoc | 26 +++--- doc/src/examples/mdi.qdoc | 26 +++--- doc/src/examples/menus.qdoc | 26 +++--- doc/src/examples/mousecalibration.qdoc | 26 +++--- doc/src/examples/movie.qdoc | 26 +++--- doc/src/examples/multipleinheritance.qdoc | 26 +++--- doc/src/examples/musicplayerexample.qdoc | 26 +++--- doc/src/examples/network-chat.qdoc | 26 +++--- doc/src/examples/orderform.qdoc | 26 +++--- doc/src/examples/overpainting.qdoc | 26 +++--- doc/src/examples/padnavigator.qdoc | 26 +++--- doc/src/examples/painterpaths.qdoc | 26 +++--- doc/src/examples/pbuffers.qdoc | 26 +++--- doc/src/examples/pbuffers2.qdoc | 26 +++--- doc/src/examples/pixelator.qdoc | 26 +++--- doc/src/examples/plugandpaint.qdoc | 26 +++--- doc/src/examples/portedasteroids.qdoc | 26 +++--- doc/src/examples/portedcanvas.qdoc | 26 +++--- doc/src/examples/previewer.qdoc | 26 +++--- doc/src/examples/qobjectxmlmodel.qdoc | 26 +++--- doc/src/examples/qtconcurrent-imagescaling.qdoc | 26 +++--- doc/src/examples/qtconcurrent-map.qdoc | 26 +++--- doc/src/examples/qtconcurrent-progressdialog.qdoc | 26 +++--- doc/src/examples/qtconcurrent-runfunction.qdoc | 26 +++--- doc/src/examples/qtconcurrent-wordcount.qdoc | 26 +++--- doc/src/examples/qtscriptcalculator.qdoc | 26 +++--- doc/src/examples/qtscriptcustomclass.qdoc | 26 +++--- doc/src/examples/qtscripttetrix.qdoc | 26 +++--- doc/src/examples/querymodel.qdoc | 26 +++--- doc/src/examples/queuedcustomtype.qdoc | 26 +++--- doc/src/examples/qxmlstreambookmarks.qdoc | 26 +++--- doc/src/examples/recentfiles.qdoc | 26 +++--- doc/src/examples/recipes.qdoc | 26 +++--- doc/src/examples/regexp.qdoc | 26 +++--- doc/src/examples/relationaltablemodel.qdoc | 26 +++--- doc/src/examples/remotecontrol.qdoc | 26 +++--- doc/src/examples/rsslisting.qdoc | 26 +++--- doc/src/examples/samplebuffers.qdoc | 26 +++--- doc/src/examples/saxbookmarks.qdoc | 26 +++--- doc/src/examples/screenshot.qdoc | 26 +++--- doc/src/examples/scribble.qdoc | 26 +++--- doc/src/examples/sdi.qdoc | 26 +++--- doc/src/examples/securesocketclient.qdoc | 26 +++--- doc/src/examples/semaphores.qdoc | 26 +++--- doc/src/examples/settingseditor.qdoc | 26 +++--- doc/src/examples/shapedclock.qdoc | 26 +++--- doc/src/examples/sharedmemory.qdoc | 26 +++--- doc/src/examples/simpledecoration.qdoc | 26 +++--- doc/src/examples/simpledommodel.qdoc | 26 +++--- doc/src/examples/simpletextviewer.qdoc | 26 +++--- doc/src/examples/simpletreemodel.qdoc | 26 +++--- doc/src/examples/simplewidgetmapper.qdoc | 26 +++--- doc/src/examples/sipdialog.qdoc | 26 +++--- doc/src/examples/sliders.qdoc | 26 +++--- doc/src/examples/spinboxdelegate.qdoc | 26 +++--- doc/src/examples/spinboxes.qdoc | 26 +++--- doc/src/examples/sqlwidgetmapper.qdoc | 26 +++--- doc/src/examples/standarddialogs.qdoc | 26 +++--- doc/src/examples/stardelegate.qdoc | 26 +++--- doc/src/examples/styleplugin.qdoc | 26 +++--- doc/src/examples/styles.qdoc | 26 +++--- doc/src/examples/stylesheet.qdoc | 26 +++--- doc/src/examples/svgalib.qdoc | 26 +++--- doc/src/examples/svggenerator.qdoc | 26 +++--- doc/src/examples/svgviewer.qdoc | 26 +++--- doc/src/examples/syntaxhighlighter.qdoc | 26 +++--- doc/src/examples/systray.qdoc | 26 +++--- doc/src/examples/tabdialog.qdoc | 26 +++--- doc/src/examples/tablemodel.qdoc | 26 +++--- doc/src/examples/tablet.qdoc | 26 +++--- doc/src/examples/taskmenuextension.qdoc | 26 +++--- doc/src/examples/tetrix.qdoc | 26 +++--- doc/src/examples/textfinder.qdoc | 26 +++--- doc/src/examples/textobject.qdoc | 26 +++--- doc/src/examples/textures.qdoc | 26 +++--- doc/src/examples/threadedfortuneserver.qdoc | 26 +++--- doc/src/examples/tooltips.qdoc | 26 +++--- doc/src/examples/torrent.qdoc | 26 +++--- doc/src/examples/trafficinfo.qdoc | 26 +++--- doc/src/examples/transformations.qdoc | 26 +++--- doc/src/examples/treemodelcompleter.qdoc | 26 +++--- doc/src/examples/trivialwizard.qdoc | 26 +++--- doc/src/examples/trollprint.qdoc | 26 +++--- doc/src/examples/undoframework.qdoc | 26 +++--- doc/src/examples/waitconditions.qdoc | 26 +++--- doc/src/examples/wiggly.qdoc | 26 +++--- doc/src/examples/windowflags.qdoc | 26 +++--- doc/src/examples/worldtimeclockbuilder.qdoc | 26 +++--- doc/src/examples/worldtimeclockplugin.qdoc | 26 +++--- doc/src/examples/xmlstreamlint.qdoc | 26 +++--- doc/src/exportedfunctions.qdoc | 26 +++--- doc/src/external-resources.qdoc | 26 +++--- doc/src/focus.qdoc | 26 +++--- doc/src/functions.qdoc | 26 +++--- doc/src/gallery-cde.qdoc | 26 +++--- doc/src/gallery-cleanlooks.qdoc | 26 +++--- doc/src/gallery-macintosh.qdoc | 26 +++--- doc/src/gallery-motif.qdoc | 26 +++--- doc/src/gallery-plastique.qdoc | 26 +++--- doc/src/gallery-windows.qdoc | 26 +++--- doc/src/gallery-windowsvista.qdoc | 26 +++--- doc/src/gallery-windowsxp.qdoc | 26 +++--- doc/src/gallery.qdoc | 26 +++--- doc/src/geometry.qdoc | 26 +++--- doc/src/gpl.qdoc | 26 +++--- doc/src/graphicsview.qdoc | 26 +++--- doc/src/groups.qdoc | 26 +++--- doc/src/guibooks.qdoc | 26 +++--- doc/src/hierarchy.qdoc | 26 +++--- doc/src/how-to-learn-qt.qdoc | 26 +++--- doc/src/i18n.qdoc | 26 +++--- doc/src/index.qdoc | 26 +++--- doc/src/installation.qdoc | 26 +++--- doc/src/introtodbus.qdoc | 26 +++--- doc/src/ipc.qdoc | 26 +++--- doc/src/known-issues.qdoc | 26 +++--- doc/src/layout.qdoc | 26 +++--- doc/src/licenses.qdoc | 26 +++--- doc/src/linguist-manual.qdoc | 26 +++--- doc/src/mac-differences.qdoc | 26 +++--- doc/src/mainclasses.qdoc | 26 +++--- doc/src/metaobjects.qdoc | 26 +++--- doc/src/moc.qdoc | 26 +++--- doc/src/model-view-programming.qdoc | 26 +++--- doc/src/modules.qdoc | 26 +++--- doc/src/object.qdoc | 26 +++--- doc/src/objecttrees.qdoc | 26 +++--- doc/src/opensourceedition.qdoc | 26 +++--- doc/src/overviews.qdoc | 26 +++--- doc/src/paintsystem.qdoc | 26 +++--- doc/src/phonon.qdoc | 26 +++--- doc/src/platform-notes.qdoc | 26 +++--- doc/src/plugins-howto.qdoc | 26 +++--- doc/src/porting-qsa.qdoc | 26 +++--- doc/src/porting4-canvas.qdoc | 26 +++--- doc/src/porting4-designer.qdoc | 26 +++--- doc/src/porting4-overview.qdoc | 26 +++--- doc/src/porting4.qdoc | 26 +++--- doc/src/printing.qdoc | 26 +++--- doc/src/properties.qdoc | 26 +++--- doc/src/q3asciicache.qdoc | 26 +++--- doc/src/q3asciidict.qdoc | 26 +++--- doc/src/q3cache.qdoc | 26 +++--- doc/src/q3dict.qdoc | 26 +++--- doc/src/q3intcache.qdoc | 26 +++--- doc/src/q3intdict.qdoc | 26 +++--- doc/src/q3memarray.qdoc | 26 +++--- doc/src/q3popupmenu.qdoc | 26 +++--- doc/src/q3ptrdict.qdoc | 26 +++--- doc/src/q3ptrlist.qdoc | 26 +++--- doc/src/q3ptrqueue.qdoc | 26 +++--- doc/src/q3ptrstack.qdoc | 26 +++--- doc/src/q3ptrvector.qdoc | 26 +++--- doc/src/q3sqlfieldinfo.qdoc | 26 +++--- doc/src/q3sqlrecordinfo.qdoc | 26 +++--- doc/src/q3valuelist.qdoc | 26 +++--- doc/src/q3valuestack.qdoc | 26 +++--- doc/src/q3valuevector.qdoc | 26 +++--- doc/src/qalgorithms.qdoc | 26 +++--- doc/src/qaxcontainer.qdoc | 26 +++--- doc/src/qaxserver.qdoc | 26 +++--- doc/src/qcache.qdoc | 26 +++--- doc/src/qcolormap.qdoc | 26 +++--- doc/src/qdbusadaptors.qdoc | 52 ++++++------ doc/src/qdesktopwidget.qdoc | 26 +++--- doc/src/qiterator.qdoc | 26 +++--- doc/src/qmake-manual.qdoc | 26 +++--- doc/src/qnamespace.qdoc | 26 +++--- doc/src/qpagesetupdialog.qdoc | 26 +++--- doc/src/qpaintdevice.qdoc | 26 +++--- doc/src/qpair.qdoc | 26 +++--- doc/src/qpatternistdummy.cpp | 26 +++--- doc/src/qplugin.qdoc | 26 +++--- doc/src/qprintdialog.qdoc | 26 +++--- doc/src/qprinterinfo.qdoc | 26 +++--- doc/src/qset.qdoc | 26 +++--- doc/src/qsignalspy.qdoc | 26 +++--- doc/src/qsizepolicy.qdoc | 26 +++--- doc/src/qsql.qdoc | 26 +++--- doc/src/qsqldatatype-table.qdoc | 26 +++--- doc/src/qstyles.qdoc | 26 +++--- doc/src/qt-conf.qdoc | 26 +++--- doc/src/qt-embedded.qdoc | 26 +++--- doc/src/qt3support.qdoc | 26 +++--- doc/src/qt3to4.qdoc | 26 +++--- doc/src/qt4-accessibility.qdoc | 26 +++--- doc/src/qt4-arthur.qdoc | 26 +++--- doc/src/qt4-designer.qdoc | 26 +++--- doc/src/qt4-interview.qdoc | 26 +++--- doc/src/qt4-intro.qdoc | 26 +++--- doc/src/qt4-mainwindow.qdoc | 26 +++--- doc/src/qt4-network.qdoc | 26 +++--- doc/src/qt4-scribe.qdoc | 26 +++--- doc/src/qt4-sql.qdoc | 26 +++--- doc/src/qt4-styles.qdoc | 26 +++--- doc/src/qt4-threads.qdoc | 26 +++--- doc/src/qt4-tulip.qdoc | 26 +++--- doc/src/qtassistant.qdoc | 26 +++--- doc/src/qtconfig.qdoc | 26 +++--- doc/src/qtcore.qdoc | 26 +++--- doc/src/qtdbus.qdoc | 52 ++++++------ doc/src/qtdemo.qdoc | 26 +++--- doc/src/qtdesigner.qdoc | 26 +++--- doc/src/qtendian.qdoc | 26 +++--- doc/src/qtestevent.qdoc | 26 +++--- doc/src/qtestlib.qdoc | 26 +++--- doc/src/qtgui.qdoc | 26 +++--- doc/src/qthelp.qdoc | 26 +++--- doc/src/qtmac-as-native.qdoc | 52 ++++++------ doc/src/qtmain.qdoc | 26 +++--- doc/src/qtnetwork.qdoc | 26 +++--- doc/src/qtopengl.qdoc | 26 +++--- doc/src/qtopiacore-architecture.qdoc | 26 +++--- doc/src/qtopiacore-displaymanagement.qdoc | 26 +++--- doc/src/qtopiacore-opengl.qdoc | 26 +++--- doc/src/qtopiacore.qdoc | 26 +++--- doc/src/qtscript.qdoc | 26 +++--- doc/src/qtscriptdebugger-manual.qdoc | 26 +++--- doc/src/qtscriptextensions.qdoc | 26 +++--- doc/src/qtscripttools.qdoc | 26 +++--- doc/src/qtsql.qdoc | 26 +++--- doc/src/qtsvg.qdoc | 26 +++--- doc/src/qttest.qdoc | 26 +++--- doc/src/qtuiloader.qdoc | 26 +++--- doc/src/qtxml.qdoc | 26 +++--- doc/src/qtxmlpatterns.qdoc | 26 +++--- doc/src/qundo.qdoc | 26 +++--- doc/src/qvarlengtharray.qdoc | 26 +++--- doc/src/qwaitcondition.qdoc | 26 +++--- doc/src/rcc.qdoc | 26 +++--- doc/src/resources.qdoc | 26 +++--- doc/src/richtext.qdoc | 26 +++--- doc/src/session.qdoc | 26 +++--- doc/src/sharedlibrary.qdoc | 26 +++--- doc/src/signalsandslots.qdoc | 26 +++--- doc/src/snippets/accessibilityfactorysnippet.cpp | 26 +++--- doc/src/snippets/accessibilitypluginsnippet.cpp | 26 +++--- doc/src/snippets/accessibilityslidersnippet.cpp | 26 +++--- doc/src/snippets/alphachannel.cpp | 26 +++--- doc/src/snippets/audioeffects.cpp | 26 +++--- doc/src/snippets/brush/brush.cpp | 26 +++--- doc/src/snippets/brush/gradientcreationsnippet.cpp | 26 +++--- doc/src/snippets/brushstyles/main.cpp | 26 +++--- doc/src/snippets/brushstyles/renderarea.cpp | 26 +++--- doc/src/snippets/brushstyles/renderarea.h | 26 +++--- doc/src/snippets/brushstyles/stylewidget.cpp | 26 +++--- doc/src/snippets/brushstyles/stylewidget.h | 26 +++--- doc/src/snippets/buffer/buffer.cpp | 26 +++--- doc/src/snippets/clipboard/clipwindow.cpp | 26 +++--- doc/src/snippets/clipboard/clipwindow.h | 26 +++--- doc/src/snippets/clipboard/main.cpp | 26 +++--- doc/src/snippets/code/doc.src.qtscripttools.qdoc | 26 +++--- .../snippets/code/doc_src_activeqt-dumpcpp.qdoc | 26 +++--- doc/src/snippets/code/doc_src_appicon.qdoc | 26 +++--- .../snippets/code/doc_src_assistant-manual.qdoc | 26 +++--- .../snippets/code/doc_src_atomic-operations.qdoc | 26 +++--- doc/src/snippets/code/doc_src_compiler-notes.qdoc | 26 +++--- doc/src/snippets/code/doc_src_containers.qdoc | 26 +++--- doc/src/snippets/code/doc_src_coordsys.qdoc | 26 +++--- doc/src/snippets/code/doc_src_debug.qdoc | 26 +++--- doc/src/snippets/code/doc_src_deployment.qdoc | 26 +++--- doc/src/snippets/code/doc_src_designer-manual.qdoc | 26 +++--- doc/src/snippets/code/doc_src_dnd.qdoc | 26 +++--- doc/src/snippets/code/doc_src_emb-charinput.qdoc | 26 +++--- .../snippets/code/doc_src_emb-crosscompiling.qdoc | 26 +++--- doc/src/snippets/code/doc_src_emb-envvars.qdoc | 26 +++--- doc/src/snippets/code/doc_src_emb-features.qdoc | 26 +++--- doc/src/snippets/code/doc_src_emb-fonts.qdoc | 26 +++--- doc/src/snippets/code/doc_src_emb-install.qdoc | 26 +++--- doc/src/snippets/code/doc_src_emb-performance.qdoc | 26 +++--- doc/src/snippets/code/doc_src_emb-pointer.qdoc | 26 +++--- doc/src/snippets/code/doc_src_emb-qvfb.qdoc | 26 +++--- doc/src/snippets/code/doc_src_emb-running.qdoc | 26 +++--- doc/src/snippets/code/doc_src_emb-vnc.qdoc | 26 +++--- .../code/doc_src_examples_activeqt_comapp.qdoc | 26 +++--- .../code/doc_src_examples_activeqt_dotnet.qdoc | 26 +++--- .../code/doc_src_examples_activeqt_menus.qdoc | 26 +++--- doc/src/snippets/code/doc_src_examples_ahigl.qdoc | 26 +++--- .../code/doc_src_examples_application.qdoc | 26 +++--- .../snippets/code/doc_src_examples_arrowpad.qdoc | 26 +++--- .../code/doc_src_examples_containerextension.qdoc | 26 +++--- .../code/doc_src_examples_customwidgetplugin.qdoc | 26 +++--- .../snippets/code/doc_src_examples_dropsite.qdoc | 26 +++--- .../code/doc_src_examples_editabletreemodel.qdoc | 26 +++--- .../snippets/code/doc_src_examples_hellotr.qdoc | 26 +++--- doc/src/snippets/code/doc_src_examples_icons.qdoc | 26 +++--- .../code/doc_src_examples_imageviewer.qdoc | 26 +++--- .../code/doc_src_examples_qtscriptcustomclass.qdoc | 26 +++--- .../code/doc_src_examples_simpledommodel.qdoc | 26 +++--- .../code/doc_src_examples_simpletreemodel.qdoc | 26 +++--- .../snippets/code/doc_src_examples_svgalib.qdoc | 26 +++--- .../code/doc_src_examples_taskmenuextension.qdoc | 26 +++--- .../snippets/code/doc_src_examples_textfinder.qdoc | 26 +++--- .../snippets/code/doc_src_examples_trollprint.qdoc | 26 +++--- .../snippets/code/doc_src_examples_tutorial.qdoc | 26 +++--- .../doc_src_examples_worldtimeclockplugin.qdoc | 26 +++--- .../snippets/code/doc_src_exportedfunctions.qdoc | 26 +++--- doc/src/snippets/code/doc_src_gpl.qdoc | 26 +++--- doc/src/snippets/code/doc_src_graphicsview.qdoc | 26 +++--- doc/src/snippets/code/doc_src_groups.qdoc | 26 +++--- doc/src/snippets/code/doc_src_i18n.qdoc | 26 +++--- doc/src/snippets/code/doc_src_installation.qdoc | 26 +++--- doc/src/snippets/code/doc_src_introtodbus.qdoc | 26 +++--- doc/src/snippets/code/doc_src_layout.qdoc | 26 +++--- doc/src/snippets/code/doc_src_lgpl.qdoc | 26 +++--- doc/src/snippets/code/doc_src_licenses.qdoc | 26 +++--- doc/src/snippets/code/doc_src_linguist-manual.qdoc | 26 +++--- doc/src/snippets/code/doc_src_mac-differences.qdoc | 26 +++--- doc/src/snippets/code/doc_src_moc.qdoc | 26 +++--- .../code/doc_src_model-view-programming.qdoc | 26 +++--- doc/src/snippets/code/doc_src_modules.qdoc | 26 +++--- doc/src/snippets/code/doc_src_objecttrees.qdoc | 26 +++--- doc/src/snippets/code/doc_src_phonon-api.qdoc | 26 +++--- doc/src/snippets/code/doc_src_phonon.qdoc | 26 +++--- doc/src/snippets/code/doc_src_platform-notes.qdoc | 26 +++--- doc/src/snippets/code/doc_src_plugins-howto.qdoc | 26 +++--- doc/src/snippets/code/doc_src_porting-qsa.qdoc | 26 +++--- doc/src/snippets/code/doc_src_porting4-canvas.qdoc | 26 +++--- .../snippets/code/doc_src_porting4-designer.qdoc | 26 +++--- doc/src/snippets/code/doc_src_porting4.qdoc | 26 +++--- doc/src/snippets/code/doc_src_properties.qdoc | 26 +++--- doc/src/snippets/code/doc_src_q3asciidict.qdoc | 26 +++--- doc/src/snippets/code/doc_src_q3dict.qdoc | 26 +++--- doc/src/snippets/code/doc_src_q3intdict.qdoc | 26 +++--- doc/src/snippets/code/doc_src_q3memarray.qdoc | 26 +++--- doc/src/snippets/code/doc_src_q3ptrdict.qdoc | 26 +++--- doc/src/snippets/code/doc_src_q3ptrlist.qdoc | 26 +++--- doc/src/snippets/code/doc_src_q3valuelist.qdoc | 26 +++--- doc/src/snippets/code/doc_src_q3valuestack.qdoc | 26 +++--- doc/src/snippets/code/doc_src_q3valuevector.qdoc | 26 +++--- doc/src/snippets/code/doc_src_qalgorithms.qdoc | 26 +++--- doc/src/snippets/code/doc_src_qaxcontainer.qdoc | 26 +++--- doc/src/snippets/code/doc_src_qaxserver.qdoc | 26 +++--- doc/src/snippets/code/doc_src_qcache.qdoc | 26 +++--- doc/src/snippets/code/doc_src_qdbusadaptors.qdoc | 26 +++--- doc/src/snippets/code/doc_src_qiterator.qdoc | 26 +++--- doc/src/snippets/code/doc_src_qmake-manual.qdoc | 26 +++--- doc/src/snippets/code/doc_src_qnamespace.qdoc | 26 +++--- doc/src/snippets/code/doc_src_qpair.qdoc | 26 +++--- doc/src/snippets/code/doc_src_qplugin.qdoc | 26 +++--- doc/src/snippets/code/doc_src_qset.qdoc | 26 +++--- doc/src/snippets/code/doc_src_qsignalspy.qdoc | 26 +++--- doc/src/snippets/code/doc_src_qt-conf.qdoc | 26 +++--- .../doc_src_qt-embedded-displaymanagement.qdoc | 26 +++--- doc/src/snippets/code/doc_src_qt3support.qdoc | 26 +++--- doc/src/snippets/code/doc_src_qt3to4.qdoc | 26 +++--- .../snippets/code/doc_src_qt4-accessibility.qdoc | 26 +++--- doc/src/snippets/code/doc_src_qt4-arthur.qdoc | 26 +++--- doc/src/snippets/code/doc_src_qt4-intro.qdoc | 26 +++--- doc/src/snippets/code/doc_src_qt4-mainwindow.qdoc | 26 +++--- doc/src/snippets/code/doc_src_qt4-sql.qdoc | 26 +++--- doc/src/snippets/code/doc_src_qt4-styles.qdoc | 26 +++--- doc/src/snippets/code/doc_src_qt4-tulip.qdoc | 26 +++--- doc/src/snippets/code/doc_src_qtcore.qdoc | 26 +++--- doc/src/snippets/code/doc_src_qtdbus.qdoc | 26 +++--- doc/src/snippets/code/doc_src_qtdesigner.qdoc | 26 +++--- doc/src/snippets/code/doc_src_qtestevent.qdoc | 26 +++--- doc/src/snippets/code/doc_src_qtestlib.qdoc | 26 +++--- doc/src/snippets/code/doc_src_qtgui.qdoc | 26 +++--- doc/src/snippets/code/doc_src_qthelp.qdoc | 26 +++--- doc/src/snippets/code/doc_src_qtmac-as-native.qdoc | 26 +++--- doc/src/snippets/code/doc_src_qtnetwork.qdoc | 26 +++--- doc/src/snippets/code/doc_src_qtopengl.qdoc | 26 +++--- doc/src/snippets/code/doc_src_qtscript.qdoc | 26 +++--- .../snippets/code/doc_src_qtscriptextensions.qdoc | 26 +++--- doc/src/snippets/code/doc_src_qtsql.qdoc | 26 +++--- doc/src/snippets/code/doc_src_qtsvg.qdoc | 26 +++--- doc/src/snippets/code/doc_src_qttest.qdoc | 26 +++--- doc/src/snippets/code/doc_src_qtuiloader.qdoc | 26 +++--- doc/src/snippets/code/doc_src_qtxml.qdoc | 26 +++--- doc/src/snippets/code/doc_src_qtxmlpatterns.qdoc | 26 +++--- doc/src/snippets/code/doc_src_qvarlengtharray.qdoc | 26 +++--- doc/src/snippets/code/doc_src_rcc.qdoc | 26 +++--- doc/src/snippets/code/doc_src_resources.qdoc | 26 +++--- doc/src/snippets/code/doc_src_richtext.qdoc | 26 +++--- doc/src/snippets/code/doc_src_session.qdoc | 26 +++--- doc/src/snippets/code/doc_src_sql-driver.qdoc | 26 +++--- doc/src/snippets/code/doc_src_styles.qdoc | 26 +++--- doc/src/snippets/code/doc_src_stylesheet.qdoc | 26 +++--- doc/src/snippets/code/doc_src_uic.qdoc | 26 +++--- doc/src/snippets/code/doc_src_unicode.qdoc | 26 +++--- .../code/doc_src_unix-signal-handlers.qdoc | 26 +++--- .../snippets/code/doc_src_wince-customization.qdoc | 26 +++--- .../snippets/code/doc_src_wince-introduction.qdoc | 26 +++--- doc/src/snippets/code/doc_src_wince-opengl.qdoc | 26 +++--- .../code/src.gui.text.qtextdocumentwriter.cpp | 26 +++--- .../snippets/code/src.qdbus.qdbuspendingcall.cpp | 26 +++--- .../snippets/code/src.qdbus.qdbuspendingreply.cpp | 26 +++--- .../code/src.scripttools.qscriptenginedebugger.cpp | 26 +++--- .../code/src_activeqt_container_qaxbase.cpp | 26 +++--- .../code/src_activeqt_container_qaxscript.cpp | 26 +++--- .../code/src_activeqt_control_qaxbindable.cpp | 26 +++--- .../code/src_activeqt_control_qaxfactory.cpp | 26 +++--- .../code/src_corelib_codecs_qtextcodec.cpp | 26 +++--- .../code/src_corelib_codecs_qtextcodecplugin.cpp | 26 +++--- .../code/src_corelib_concurrent_qfuture.cpp | 26 +++--- .../src_corelib_concurrent_qfuturesynchronizer.cpp | 26 +++--- .../code/src_corelib_concurrent_qfuturewatcher.cpp | 26 +++--- ...rc_corelib_concurrent_qtconcurrentexception.cpp | 26 +++--- .../src_corelib_concurrent_qtconcurrentfilter.cpp | 26 +++--- .../src_corelib_concurrent_qtconcurrentmap.cpp | 26 +++--- .../src_corelib_concurrent_qtconcurrentrun.cpp | 26 +++--- .../code/src_corelib_concurrent_qthreadpool.cpp | 26 +++--- .../snippets/code/src_corelib_global_qglobal.cpp | 26 +++--- .../code/src_corelib_io_qabstractfileengine.cpp | 26 +++--- .../snippets/code/src_corelib_io_qdatastream.cpp | 26 +++--- doc/src/snippets/code/src_corelib_io_qdir.cpp | 26 +++--- .../snippets/code/src_corelib_io_qdiriterator.cpp | 26 +++--- doc/src/snippets/code/src_corelib_io_qfile.cpp | 26 +++--- doc/src/snippets/code/src_corelib_io_qfileinfo.cpp | 26 +++--- doc/src/snippets/code/src_corelib_io_qiodevice.cpp | 26 +++--- doc/src/snippets/code/src_corelib_io_qprocess.cpp | 26 +++--- doc/src/snippets/code/src_corelib_io_qsettings.cpp | 26 +++--- .../code/src_corelib_io_qtemporaryfile.cpp | 26 +++--- .../snippets/code/src_corelib_io_qtextstream.cpp | 26 +++--- doc/src/snippets/code/src_corelib_io_qurl.cpp | 26 +++--- ...src_corelib_kernel_qabstracteventdispatcher.cpp | 26 +++--- .../code/src_corelib_kernel_qabstractitemmodel.cpp | 26 +++--- .../code/src_corelib_kernel_qcoreapplication.cpp | 26 +++--- .../code/src_corelib_kernel_qmetaobject.cpp | 26 +++--- .../snippets/code/src_corelib_kernel_qmetatype.cpp | 26 +++--- .../snippets/code/src_corelib_kernel_qmimedata.cpp | 26 +++--- .../snippets/code/src_corelib_kernel_qobject.cpp | 26 +++--- .../code/src_corelib_kernel_qsystemsemaphore.cpp | 26 +++--- .../snippets/code/src_corelib_kernel_qtimer.cpp | 26 +++--- .../snippets/code/src_corelib_kernel_qvariant.cpp | 26 +++--- .../snippets/code/src_corelib_plugin_qlibrary.cpp | 26 +++--- doc/src/snippets/code/src_corelib_plugin_quuid.cpp | 26 +++--- .../snippets/code/src_corelib_thread_qatomic.cpp | 26 +++--- .../snippets/code/src_corelib_thread_qmutex.cpp | 26 +++--- .../code/src_corelib_thread_qmutexpool.cpp | 26 +++--- .../code/src_corelib_thread_qreadwritelock.cpp | 26 +++--- .../code/src_corelib_thread_qsemaphore.cpp | 26 +++--- .../snippets/code/src_corelib_thread_qthread.cpp | 26 +++--- .../src_corelib_thread_qwaitcondition_unix.cpp | 26 +++--- .../snippets/code/src_corelib_tools_qbitarray.cpp | 26 +++--- .../snippets/code/src_corelib_tools_qbytearray.cpp | 26 +++--- .../snippets/code/src_corelib_tools_qdatetime.cpp | 26 +++--- doc/src/snippets/code/src_corelib_tools_qhash.cpp | 26 +++--- .../code/src_corelib_tools_qlinkedlist.cpp | 26 +++--- .../snippets/code/src_corelib_tools_qlistdata.cpp | 26 +++--- .../snippets/code/src_corelib_tools_qlocale.cpp | 26 +++--- doc/src/snippets/code/src_corelib_tools_qmap.cpp | 26 +++--- doc/src/snippets/code/src_corelib_tools_qpoint.cpp | 26 +++--- doc/src/snippets/code/src_corelib_tools_qqueue.cpp | 26 +++--- doc/src/snippets/code/src_corelib_tools_qrect.cpp | 26 +++--- .../snippets/code/src_corelib_tools_qregexp.cpp | 26 +++--- doc/src/snippets/code/src_corelib_tools_qsize.cpp | 26 +++--- .../snippets/code/src_corelib_tools_qstring.cpp | 26 +++--- .../snippets/code/src_corelib_tools_qtimeline.cpp | 26 +++--- .../snippets/code/src_corelib_tools_qvector.cpp | 26 +++--- .../snippets/code/src_corelib_xml_qxmlstream.cpp | 26 +++--- .../code/src_gui_accessible_qaccessible.cpp | 26 +++--- .../code/src_gui_dialogs_qabstractprintdialog.cpp | 26 +++--- .../snippets/code/src_gui_dialogs_qfiledialog.cpp | 26 +++--- .../snippets/code/src_gui_dialogs_qfontdialog.cpp | 26 +++--- .../snippets/code/src_gui_dialogs_qmessagebox.cpp | 26 +++--- doc/src/snippets/code/src_gui_dialogs_qwizard.cpp | 26 +++--- .../code/src_gui_embedded_qcopchannel_qws.cpp | 26 +++--- .../snippets/code/src_gui_embedded_qmouse_qws.cpp | 26 +++--- .../code/src_gui_embedded_qmousetslib_qws.cpp | 26 +++--- .../snippets/code/src_gui_embedded_qscreen_qws.cpp | 26 +++--- .../code/src_gui_embedded_qtransportauth_qws.cpp | 26 +++--- .../code/src_gui_embedded_qwindowsystem_qws.cpp | 26 +++--- .../src_gui_graphicsview_qgraphicsgridlayout.cpp | 26 +++--- .../code/src_gui_graphicsview_qgraphicsitem.cpp | 26 +++--- .../src_gui_graphicsview_qgraphicslinearlayout.cpp | 26 +++--- .../src_gui_graphicsview_qgraphicsproxywidget.cpp | 26 +++--- .../code/src_gui_graphicsview_qgraphicsscene.cpp | 26 +++--- .../src_gui_graphicsview_qgraphicssceneevent.cpp | 26 +++--- .../code/src_gui_graphicsview_qgraphicsview.cpp | 26 +++--- .../code/src_gui_graphicsview_qgraphicswidget.cpp | 26 +++--- doc/src/snippets/code/src_gui_image_qbitmap.cpp | 26 +++--- doc/src/snippets/code/src_gui_image_qicon.cpp | 26 +++--- doc/src/snippets/code/src_gui_image_qimage.cpp | 26 +++--- .../snippets/code/src_gui_image_qimagereader.cpp | 26 +++--- .../snippets/code/src_gui_image_qimagewriter.cpp | 26 +++--- doc/src/snippets/code/src_gui_image_qmovie.cpp | 26 +++--- doc/src/snippets/code/src_gui_image_qpixmap.cpp | 26 +++--- .../snippets/code/src_gui_image_qpixmapcache.cpp | 26 +++--- .../snippets/code/src_gui_image_qpixmapfilter.cpp | 26 +++--- .../code/src_gui_itemviews_qabstractitemview.cpp | 26 +++--- .../code/src_gui_itemviews_qdatawidgetmapper.cpp | 26 +++--- .../code/src_gui_itemviews_qitemeditorfactory.cpp | 26 +++--- .../code/src_gui_itemviews_qitemselectionmodel.cpp | 26 +++--- .../code/src_gui_itemviews_qstandarditemmodel.cpp | 26 +++--- .../code/src_gui_itemviews_qtablewidget.cpp | 26 +++--- .../code/src_gui_itemviews_qtreewidget.cpp | 26 +++--- doc/src/snippets/code/src_gui_kernel_qaction.cpp | 26 +++--- .../snippets/code/src_gui_kernel_qapplication.cpp | 26 +++--- .../code/src_gui_kernel_qapplication_x11.cpp | 26 +++--- .../snippets/code/src_gui_kernel_qclipboard.cpp | 26 +++--- doc/src/snippets/code/src_gui_kernel_qevent.cpp | 26 +++--- .../snippets/code/src_gui_kernel_qformlayout.cpp | 26 +++--- .../snippets/code/src_gui_kernel_qkeysequence.cpp | 26 +++--- doc/src/snippets/code/src_gui_kernel_qlayout.cpp | 26 +++--- .../snippets/code/src_gui_kernel_qlayoutitem.cpp | 26 +++--- doc/src/snippets/code/src_gui_kernel_qshortcut.cpp | 26 +++--- .../snippets/code/src_gui_kernel_qshortcutmap.cpp | 26 +++--- doc/src/snippets/code/src_gui_kernel_qsound.cpp | 26 +++--- doc/src/snippets/code/src_gui_kernel_qwidget.cpp | 26 +++--- doc/src/snippets/code/src_gui_painting_qbrush.cpp | 26 +++--- doc/src/snippets/code/src_gui_painting_qcolor.cpp | 26 +++--- .../snippets/code/src_gui_painting_qdrawutil.cpp | 26 +++--- doc/src/snippets/code/src_gui_painting_qmatrix.cpp | 26 +++--- .../snippets/code/src_gui_painting_qpainter.cpp | 26 +++--- .../code/src_gui_painting_qpainterpath.cpp | 26 +++--- doc/src/snippets/code/src_gui_painting_qpen.cpp | 26 +++--- doc/src/snippets/code/src_gui_painting_qregion.cpp | 26 +++--- .../code/src_gui_painting_qregion_unix.cpp | 26 +++--- .../snippets/code/src_gui_painting_qtransform.cpp | 26 +++--- doc/src/snippets/code/src_gui_styles_qstyle.cpp | 26 +++--- .../snippets/code/src_gui_styles_qstyleoption.cpp | 26 +++--- doc/src/snippets/code/src_gui_text_qfont.cpp | 26 +++--- .../snippets/code/src_gui_text_qfontmetrics.cpp | 26 +++--- .../code/src_gui_text_qsyntaxhighlighter.cpp | 26 +++--- doc/src/snippets/code/src_gui_text_qtextcursor.cpp | 26 +++--- .../snippets/code/src_gui_text_qtextdocument.cpp | 26 +++--- doc/src/snippets/code/src_gui_text_qtextlayout.cpp | 26 +++--- doc/src/snippets/code/src_gui_util_qcompleter.cpp | 26 +++--- .../code/src_gui_util_qdesktopservices.cpp | 26 +++--- doc/src/snippets/code/src_gui_util_qundostack.cpp | 26 +++--- .../code/src_gui_widgets_qabstractbutton.cpp | 26 +++--- .../code/src_gui_widgets_qabstractspinbox.cpp | 26 +++--- .../code/src_gui_widgets_qcalendarwidget.cpp | 26 +++--- .../snippets/code/src_gui_widgets_qcheckbox.cpp | 26 +++--- .../code/src_gui_widgets_qdatetimeedit.cpp | 26 +++--- .../snippets/code/src_gui_widgets_qdockwidget.cpp | 26 +++--- doc/src/snippets/code/src_gui_widgets_qframe.cpp | 26 +++--- .../snippets/code/src_gui_widgets_qgroupbox.cpp | 26 +++--- doc/src/snippets/code/src_gui_widgets_qlabel.cpp | 26 +++--- .../snippets/code/src_gui_widgets_qlineedit.cpp | 26 +++--- doc/src/snippets/code/src_gui_widgets_qmenu.cpp | 26 +++--- doc/src/snippets/code/src_gui_widgets_qmenubar.cpp | 26 +++--- .../code/src_gui_widgets_qplaintextedit.cpp | 26 +++--- .../snippets/code/src_gui_widgets_qpushbutton.cpp | 26 +++--- .../snippets/code/src_gui_widgets_qradiobutton.cpp | 26 +++--- .../snippets/code/src_gui_widgets_qrubberband.cpp | 26 +++--- .../snippets/code/src_gui_widgets_qscrollarea.cpp | 26 +++--- doc/src/snippets/code/src_gui_widgets_qspinbox.cpp | 26 +++--- .../code/src_gui_widgets_qsplashscreen.cpp | 26 +++--- .../snippets/code/src_gui_widgets_qsplitter.cpp | 26 +++--- .../snippets/code/src_gui_widgets_qstatusbar.cpp | 26 +++--- .../snippets/code/src_gui_widgets_qtextbrowser.cpp | 26 +++--- .../snippets/code/src_gui_widgets_qtextedit.cpp | 26 +++--- .../snippets/code/src_gui_widgets_qvalidator.cpp | 26 +++--- .../snippets/code/src_gui_widgets_qworkspace.cpp | 26 +++--- doc/src/snippets/code/src_network_access_qftp.cpp | 26 +++--- doc/src/snippets/code/src_network_access_qhttp.cpp | 26 +++--- .../src_network_access_qnetworkaccessmanager.cpp | 26 +++--- .../code/src_network_access_qnetworkrequest.cpp | 26 +++--- .../code/src_network_kernel_qhostaddress.cpp | 26 +++--- .../snippets/code/src_network_kernel_qhostinfo.cpp | 26 +++--- .../code/src_network_kernel_qnetworkproxy.cpp | 26 +++--- .../code/src_network_socket_qabstractsocket.cpp | 26 +++--- .../code/src_network_socket_qlocalsocket_unix.cpp | 26 +++--- .../src_network_socket_qnativesocketengine.cpp | 26 +++--- .../code/src_network_socket_qtcpserver.cpp | 26 +++--- .../code/src_network_socket_qudpsocket.cpp | 26 +++--- .../code/src_network_ssl_qsslcertificate.cpp | 26 +++--- .../code/src_network_ssl_qsslconfiguration.cpp | 26 +++--- .../snippets/code/src_network_ssl_qsslsocket.cpp | 26 +++--- doc/src/snippets/code/src_opengl_qgl.cpp | 26 +++--- doc/src/snippets/code/src_opengl_qglcolormap.cpp | 26 +++--- .../snippets/code/src_opengl_qglpixelbuffer.cpp | 26 +++--- .../code/src_qdbus_qdbusabstractinterface.cpp | 26 +++--- doc/src/snippets/code/src_qdbus_qdbusargument.cpp | 26 +++--- doc/src/snippets/code/src_qdbus_qdbuscontext.cpp | 26 +++--- doc/src/snippets/code/src_qdbus_qdbusinterface.cpp | 26 +++--- doc/src/snippets/code/src_qdbus_qdbusmetatype.cpp | 26 +++--- doc/src/snippets/code/src_qdbus_qdbusreply.cpp | 26 +++--- .../code/src_qt3support_canvas_q3canvas.cpp | 26 +++--- .../code/src_qt3support_dialogs_q3filedialog.cpp | 26 +++--- .../src_qt3support_dialogs_q3progressdialog.cpp | 26 +++--- .../code/src_qt3support_itemviews_q3iconview.cpp | 26 +++--- .../code/src_qt3support_itemviews_q3listview.cpp | 26 +++--- .../code/src_qt3support_itemviews_q3table.cpp | 26 +++--- .../snippets/code/src_qt3support_network_q3dns.cpp | 26 +++--- .../snippets/code/src_qt3support_network_q3ftp.cpp | 26 +++--- .../code/src_qt3support_network_q3http.cpp | 26 +++--- .../code/src_qt3support_network_q3localfs.cpp | 26 +++--- .../src_qt3support_network_q3networkprotocol.cpp | 26 +++--- .../code/src_qt3support_network_q3socket.cpp | 26 +++--- .../code/src_qt3support_network_q3socketdevice.cpp | 26 +++--- .../snippets/code/src_qt3support_network_q3url.cpp | 26 +++--- .../code/src_qt3support_network_q3urloperator.cpp | 26 +++--- .../snippets/code/src_qt3support_other_q3accel.cpp | 26 +++--- .../code/src_qt3support_other_q3mimefactory.cpp | 26 +++--- .../code/src_qt3support_other_q3process.cpp | 26 +++--- .../code/src_qt3support_other_q3process_unix.cpp | 26 +++--- ...rc_qt3support_painting_q3paintdevicemetrics.cpp | 26 +++--- .../code/src_qt3support_painting_q3painter.cpp | 26 +++--- .../code/src_qt3support_painting_q3picture.cpp | 26 +++--- .../code/src_qt3support_sql_q3databrowser.cpp | 26 +++--- .../code/src_qt3support_sql_q3datatable.cpp | 26 +++--- .../code/src_qt3support_sql_q3dataview.cpp | 26 +++--- .../code/src_qt3support_sql_q3sqlcursor.cpp | 26 +++--- .../snippets/code/src_qt3support_sql_q3sqlform.cpp | 26 +++--- .../code/src_qt3support_sql_q3sqlmanager_p.cpp | 26 +++--- .../code/src_qt3support_sql_q3sqlpropertymap.cpp | 26 +++--- .../code/src_qt3support_sql_q3sqlselectcursor.cpp | 26 +++--- .../code/src_qt3support_text_q3simplerichtext.cpp | 26 +++--- .../code/src_qt3support_text_q3textbrowser.cpp | 26 +++--- .../code/src_qt3support_text_q3textedit.cpp | 26 +++--- .../code/src_qt3support_text_q3textstream.cpp | 26 +++--- .../code/src_qt3support_tools_q3cstring.cpp | 26 +++--- .../code/src_qt3support_tools_q3deepcopy.cpp | 26 +++--- .../code/src_qt3support_tools_q3garray.cpp | 26 +++--- .../code/src_qt3support_tools_q3signal.cpp | 26 +++--- .../code/src_qt3support_widgets_q3combobox.cpp | 26 +++--- .../code/src_qt3support_widgets_q3datetimeedit.cpp | 26 +++--- .../code/src_qt3support_widgets_q3dockarea.cpp | 26 +++--- .../code/src_qt3support_widgets_q3dockwindow.cpp | 26 +++--- .../code/src_qt3support_widgets_q3gridview.cpp | 26 +++--- .../code/src_qt3support_widgets_q3header.cpp | 26 +++--- .../code/src_qt3support_widgets_q3mainwindow.cpp | 26 +++--- .../code/src_qt3support_widgets_q3scrollview.cpp | 26 +++--- .../code/src_qt3support_widgets_q3whatsthis.cpp | 26 +++--- doc/src/snippets/code/src_qtestlib_qtestcase.cpp | 26 +++--- doc/src/snippets/code/src_script_qscriptable.cpp | 26 +++--- doc/src/snippets/code/src_script_qscriptclass.cpp | 26 +++--- .../snippets/code/src_script_qscriptcontext.cpp | 26 +++--- doc/src/snippets/code/src_script_qscriptengine.cpp | 26 +++--- .../code/src_script_qscriptengineagent.cpp | 26 +++--- doc/src/snippets/code/src_script_qscriptvalue.cpp | 26 +++--- .../code/src_script_qscriptvalueiterator.cpp | 26 +++--- .../snippets/code/src_sql_kernel_qsqldatabase.cpp | 26 +++--- .../snippets/code/src_sql_kernel_qsqldriver.cpp | 26 +++--- doc/src/snippets/code/src_sql_kernel_qsqlerror.cpp | 26 +++--- doc/src/snippets/code/src_sql_kernel_qsqlindex.cpp | 26 +++--- doc/src/snippets/code/src_sql_kernel_qsqlquery.cpp | 26 +++--- .../snippets/code/src_sql_kernel_qsqlresult.cpp | 26 +++--- .../code/src_sql_models_qsqlquerymodel.cpp | 26 +++--- doc/src/snippets/code/src_svg_qgraphicssvgitem.cpp | 26 +++--- doc/src/snippets/code/src_xml_dom_qdom.cpp | 26 +++--- doc/src/snippets/code/src_xml_sax_qxml.cpp | 26 +++--- .../src_xmlpatterns_api_qabstracturiresolver.cpp | 26 +++--- ...xmlpatterns_api_qabstractxmlforwarditerator.cpp | 26 +++--- .../src_xmlpatterns_api_qabstractxmlnodemodel.cpp | 26 +++--- .../src_xmlpatterns_api_qabstractxmlreceiver.cpp | 26 +++--- .../src_xmlpatterns_api_qsimplexmlnodemodel.cpp | 26 +++--- .../code/src_xmlpatterns_api_qxmlformatter.cpp | 26 +++--- .../snippets/code/src_xmlpatterns_api_qxmlname.cpp | 26 +++--- .../code/src_xmlpatterns_api_qxmlquery.cpp | 26 +++--- .../code/src_xmlpatterns_api_qxmlresultitems.cpp | 26 +++--- .../code/src_xmlpatterns_api_qxmlserializer.cpp | 26 +++--- ...tools_assistant_compat_lib_qassistantclient.cpp | 26 +++--- ..._src_lib_extension_default_extensionfactory.cpp | 26 +++--- .../tools_designer_src_lib_extension_extension.cpp | 26 +++--- ...esigner_src_lib_extension_qextensionmanager.cpp | 26 +++--- ...ols_designer_src_lib_sdk_abstractformeditor.cpp | 26 +++--- ...ols_designer_src_lib_sdk_abstractformwindow.cpp | 26 +++--- ...signer_src_lib_sdk_abstractformwindowcursor.cpp | 26 +++--- ...igner_src_lib_sdk_abstractformwindowmanager.cpp | 26 +++--- ...esigner_src_lib_sdk_abstractobjectinspector.cpp | 26 +++--- ...designer_src_lib_sdk_abstractpropertyeditor.cpp | 26 +++--- ...ools_designer_src_lib_sdk_abstractwidgetbox.cpp | 26 +++--- ..._designer_src_lib_uilib_abstractformbuilder.cpp | 26 +++--- .../tools_designer_src_lib_uilib_formbuilder.cpp | 26 +++--- ...tools_patternist_qapplicationargumentparser.cpp | 26 +++--- ...ls_shared_qtgradienteditor_qtgradientdialog.cpp | 26 +++--- ..._shared_qtpropertybrowser_qtpropertybrowser.cpp | 26 +++--- ..._shared_qtpropertybrowser_qtvariantproperty.cpp | 26 +++--- ...ools_shared_qttoolbardialog_qttoolbardialog.cpp | 26 +++--- doc/src/snippets/coordsys/coordsys.cpp | 26 +++--- doc/src/snippets/customstyle/customstyle.cpp | 26 +++--- doc/src/snippets/customstyle/customstyle.h | 26 +++--- doc/src/snippets/customstyle/main.cpp | 26 +++--- doc/src/snippets/customviewstyle.cpp | 26 +++--- .../designer/autoconnection/imagedialog.cpp | 26 +++--- .../snippets/designer/autoconnection/imagedialog.h | 26 +++--- doc/src/snippets/designer/autoconnection/main.cpp | 26 +++--- doc/src/snippets/designer/imagedialog/main.cpp | 26 +++--- .../designer/multipleinheritance/imagedialog.cpp | 26 +++--- .../designer/multipleinheritance/imagedialog.h | 26 +++--- .../snippets/designer/multipleinheritance/main.cpp | 26 +++--- .../designer/noautoconnection/imagedialog.cpp | 26 +++--- .../designer/noautoconnection/imagedialog.h | 26 +++--- .../snippets/designer/noautoconnection/main.cpp | 26 +++--- .../designer/singleinheritance/imagedialog.cpp | 26 +++--- .../designer/singleinheritance/imagedialog.h | 26 +++--- .../snippets/designer/singleinheritance/main.cpp | 26 +++--- doc/src/snippets/dialogs/dialogs.cpp | 26 +++--- doc/src/snippets/dockwidgets/main.cpp | 26 +++--- doc/src/snippets/dockwidgets/mainwindow.cpp | 26 +++--- doc/src/snippets/dockwidgets/mainwindow.h | 26 +++--- doc/src/snippets/draganddrop/dragwidget.cpp | 26 +++--- doc/src/snippets/draganddrop/dragwidget.h | 26 +++--- doc/src/snippets/draganddrop/main.cpp | 26 +++--- doc/src/snippets/draganddrop/mainwindow.cpp | 26 +++--- doc/src/snippets/draganddrop/mainwindow.h | 26 +++--- doc/src/snippets/dragging/main.cpp | 26 +++--- doc/src/snippets/dragging/mainwindow.cpp | 26 +++--- doc/src/snippets/dragging/mainwindow.h | 26 +++--- doc/src/snippets/dropactions/main.cpp | 26 +++--- doc/src/snippets/dropactions/window.cpp | 26 +++--- doc/src/snippets/dropactions/window.h | 26 +++--- doc/src/snippets/droparea.cpp | 26 +++--- doc/src/snippets/dropevents/main.cpp | 26 +++--- doc/src/snippets/dropevents/window.cpp | 26 +++--- doc/src/snippets/dropevents/window.h | 26 +++--- doc/src/snippets/droprectangle/main.cpp | 26 +++--- doc/src/snippets/droprectangle/window.cpp | 26 +++--- doc/src/snippets/droprectangle/window.h | 26 +++--- doc/src/snippets/eventfilters/filterobject.cpp | 26 +++--- doc/src/snippets/eventfilters/filterobject.h | 26 +++--- doc/src/snippets/eventfilters/main.cpp | 26 +++--- doc/src/snippets/events/events.cpp | 26 +++--- .../snippets/explicitlysharedemployee/employee.cpp | 26 +++--- .../snippets/explicitlysharedemployee/employee.h | 26 +++--- doc/src/snippets/explicitlysharedemployee/main.cpp | 26 +++--- doc/src/snippets/file/file.cpp | 26 +++--- doc/src/snippets/filedialogurls.cpp | 26 +++--- doc/src/snippets/fileinfo/main.cpp | 26 +++--- doc/src/snippets/graphicssceneadditemsnippet.cpp | 26 +++--- doc/src/snippets/i18n-non-qt-class/main.cpp | 26 +++--- doc/src/snippets/i18n-non-qt-class/myclass.cpp | 26 +++--- doc/src/snippets/i18n-non-qt-class/myclass.h | 26 +++--- doc/src/snippets/image/image.cpp | 26 +++--- doc/src/snippets/image/supportedformat.cpp | 26 +++--- doc/src/snippets/inherited-slot/button.cpp | 26 +++--- doc/src/snippets/inherited-slot/button.h | 26 +++--- doc/src/snippets/inherited-slot/main.cpp | 26 +++--- doc/src/snippets/itemselection/main.cpp | 26 +++--- doc/src/snippets/itemselection/model.cpp | 26 +++--- doc/src/snippets/itemselection/model.h | 26 +++--- doc/src/snippets/javastyle.cpp | 26 +++--- doc/src/snippets/layouts/layouts.cpp | 26 +++--- doc/src/snippets/mainwindowsnippet.cpp | 26 +++--- doc/src/snippets/matrix/matrix.cpp | 26 +++--- doc/src/snippets/mdiareasnippets.cpp | 26 +++--- doc/src/snippets/medianodesnippet.cpp | 26 +++--- doc/src/snippets/moc/main.cpp | 26 +++--- doc/src/snippets/moc/myclass1.h | 26 +++--- doc/src/snippets/moc/myclass2.h | 26 +++--- doc/src/snippets/moc/myclass3.h | 26 +++--- doc/src/snippets/modelview-subclasses/main.cpp | 26 +++--- doc/src/snippets/modelview-subclasses/model.cpp | 26 +++--- doc/src/snippets/modelview-subclasses/model.h | 26 +++--- doc/src/snippets/modelview-subclasses/view.cpp | 26 +++--- doc/src/snippets/modelview-subclasses/view.h | 26 +++--- doc/src/snippets/modelview-subclasses/window.cpp | 26 +++--- doc/src/snippets/modelview-subclasses/window.h | 26 +++--- doc/src/snippets/myscrollarea.cpp | 26 +++--- doc/src/snippets/network/tcpwait.cpp | 26 +++--- doc/src/snippets/ntfsp.cpp | 26 +++--- doc/src/snippets/painterpath/painterpath.cpp | 26 +++--- doc/src/snippets/persistentindexes/main.cpp | 26 +++--- doc/src/snippets/persistentindexes/mainwindow.cpp | 26 +++--- doc/src/snippets/persistentindexes/mainwindow.h | 26 +++--- doc/src/snippets/persistentindexes/model.cpp | 26 +++--- doc/src/snippets/persistentindexes/model.h | 26 +++--- doc/src/snippets/phonon.cpp | 26 +++--- doc/src/snippets/phonon/samplebackend/main.cpp | 26 +++--- doc/src/snippets/phononeffectparameter.cpp | 26 +++--- doc/src/snippets/phononobjectdescription.cpp | 26 +++--- doc/src/snippets/picture/picture.cpp | 26 +++--- doc/src/snippets/plaintextlayout/main.cpp | 26 +++--- doc/src/snippets/plaintextlayout/window.cpp | 26 +++--- doc/src/snippets/plaintextlayout/window.h | 26 +++--- doc/src/snippets/pointer/pointer.cpp | 26 +++--- doc/src/snippets/polygon/polygon.cpp | 26 +++--- doc/src/snippets/porting4-dropevents/main.cpp | 26 +++--- doc/src/snippets/porting4-dropevents/window.cpp | 26 +++--- doc/src/snippets/porting4-dropevents/window.h | 26 +++--- doc/src/snippets/printing-qprinter/errors.cpp | 26 +++--- doc/src/snippets/printing-qprinter/main.cpp | 26 +++--- doc/src/snippets/printing-qprinter/object.cpp | 26 +++--- doc/src/snippets/printing-qprinter/object.h | 26 +++--- doc/src/snippets/process/process.cpp | 26 +++--- doc/src/snippets/qabstractsliderisnippet.cpp | 26 +++--- doc/src/snippets/qcalendarwidget/main.cpp | 26 +++--- doc/src/snippets/qcolumnview/main.cpp | 26 +++--- .../snippets/qdbusextratypes/qdbusextratypes.cpp | 26 +++--- doc/src/snippets/qdebug/qdebugsnippet.cpp | 26 +++--- doc/src/snippets/qdir-filepaths/main.cpp | 26 +++--- doc/src/snippets/qdir-listfiles/main.cpp | 26 +++--- doc/src/snippets/qdir-namefilters/main.cpp | 26 +++--- doc/src/snippets/qfontdatabase/main.cpp | 26 +++--- doc/src/snippets/qgl-namespace/main.cpp | 26 +++--- doc/src/snippets/qlabel/main.cpp | 26 +++--- doc/src/snippets/qlineargradient/main.cpp | 26 +++--- doc/src/snippets/qlineargradient/paintwidget.cpp | 26 +++--- doc/src/snippets/qlineargradient/paintwidget.h | 26 +++--- doc/src/snippets/qlistview-dnd/main.cpp | 26 +++--- doc/src/snippets/qlistview-dnd/mainwindow.cpp | 26 +++--- doc/src/snippets/qlistview-dnd/mainwindow.h | 26 +++--- doc/src/snippets/qlistview-dnd/model.cpp | 26 +++--- doc/src/snippets/qlistview-dnd/model.h | 26 +++--- doc/src/snippets/qlistview-using/main.cpp | 26 +++--- doc/src/snippets/qlistview-using/mainwindow.cpp | 26 +++--- doc/src/snippets/qlistview-using/mainwindow.h | 26 +++--- doc/src/snippets/qlistview-using/model.cpp | 26 +++--- doc/src/snippets/qlistview-using/model.h | 26 +++--- doc/src/snippets/qlistwidget-dnd/main.cpp | 26 +++--- doc/src/snippets/qlistwidget-dnd/mainwindow.cpp | 26 +++--- doc/src/snippets/qlistwidget-dnd/mainwindow.h | 26 +++--- doc/src/snippets/qlistwidget-using/main.cpp | 26 +++--- doc/src/snippets/qlistwidget-using/mainwindow.cpp | 26 +++--- doc/src/snippets/qlistwidget-using/mainwindow.h | 26 +++--- doc/src/snippets/qmake/delegate.h | 26 +++--- doc/src/snippets/qmake/main.cpp | 26 +++--- doc/src/snippets/qmake/model.cpp | 26 +++--- doc/src/snippets/qmake/model.h | 26 +++--- doc/src/snippets/qmake/paintwidget_mac.cpp | 26 +++--- doc/src/snippets/qmake/paintwidget_unix.cpp | 26 +++--- doc/src/snippets/qmake/paintwidget_win.cpp | 26 +++--- doc/src/snippets/qmake/view.h | 26 +++--- doc/src/snippets/qmetaobject-invokable/main.cpp | 26 +++--- doc/src/snippets/qmetaobject-invokable/window.cpp | 26 +++--- doc/src/snippets/qmetaobject-invokable/window.h | 26 +++--- doc/src/snippets/qprocess-environment/main.cpp | 26 +++--- .../snippets/qprocess/qprocess-simpleexecution.cpp | 26 +++--- doc/src/snippets/qsignalmapper/buttonwidget.cpp | 26 +++--- doc/src/snippets/qsignalmapper/buttonwidget.h | 26 +++--- doc/src/snippets/qsignalmapper/main.cpp | 26 +++--- doc/src/snippets/qsignalmapper/mainwindow.h | 26 +++--- .../qsortfilterproxymodel-details/main.cpp | 26 +++--- doc/src/snippets/qsortfilterproxymodel/main.cpp | 26 +++--- doc/src/snippets/qsplashscreen/main.cpp | 26 +++--- doc/src/snippets/qsplashscreen/mainwindow.cpp | 26 +++--- doc/src/snippets/qsplashscreen/mainwindow.h | 26 +++--- doc/src/snippets/qsql-namespace/main.cpp | 26 +++--- doc/src/snippets/qstack/main.cpp | 26 +++--- doc/src/snippets/qstackedlayout/main.cpp | 26 +++--- doc/src/snippets/qstackedwidget/main.cpp | 26 +++--- doc/src/snippets/qstandarditemmodel/main.cpp | 26 +++--- doc/src/snippets/qstatustipevent/main.cpp | 26 +++--- doc/src/snippets/qstring/main.cpp | 26 +++--- doc/src/snippets/qstringlist/main.cpp | 26 +++--- doc/src/snippets/qstringlistmodel/main.cpp | 26 +++--- doc/src/snippets/qstyleoption/main.cpp | 26 +++--- doc/src/snippets/qstyleplugin/main.cpp | 26 +++--- doc/src/snippets/qsvgwidget/main.cpp | 26 +++--- doc/src/snippets/qt-namespace/main.cpp | 26 +++--- doc/src/snippets/qtablewidget-dnd/main.cpp | 26 +++--- doc/src/snippets/qtablewidget-dnd/mainwindow.cpp | 26 +++--- doc/src/snippets/qtablewidget-dnd/mainwindow.h | 26 +++--- doc/src/snippets/qtablewidget-resizing/main.cpp | 26 +++--- .../snippets/qtablewidget-resizing/mainwindow.cpp | 26 +++--- .../snippets/qtablewidget-resizing/mainwindow.h | 26 +++--- doc/src/snippets/qtablewidget-using/main.cpp | 26 +++--- doc/src/snippets/qtablewidget-using/mainwindow.cpp | 26 +++--- doc/src/snippets/qtablewidget-using/mainwindow.h | 26 +++--- doc/src/snippets/qtcast/qtcast.cpp | 26 +++--- doc/src/snippets/qtcast/qtcast.h | 26 +++--- doc/src/snippets/qtest-namespace/main.cpp | 26 +++--- doc/src/snippets/qtreeview-dnd/dragdropmodel.cpp | 26 +++--- doc/src/snippets/qtreeview-dnd/dragdropmodel.h | 26 +++--- doc/src/snippets/qtreeview-dnd/main.cpp | 26 +++--- doc/src/snippets/qtreeview-dnd/mainwindow.cpp | 26 +++--- doc/src/snippets/qtreeview-dnd/mainwindow.h | 26 +++--- doc/src/snippets/qtreeview-dnd/treeitem.cpp | 26 +++--- doc/src/snippets/qtreeview-dnd/treeitem.h | 26 +++--- doc/src/snippets/qtreeview-dnd/treemodel.cpp | 26 +++--- doc/src/snippets/qtreeview-dnd/treemodel.h | 26 +++--- doc/src/snippets/qtreewidget-using/main.cpp | 26 +++--- doc/src/snippets/qtreewidget-using/mainwindow.cpp | 26 +++--- doc/src/snippets/qtreewidget-using/mainwindow.h | 26 +++--- .../qtreewidgetitemiterator-using/main.cpp | 26 +++--- .../qtreewidgetitemiterator-using/mainwindow.cpp | 26 +++--- .../qtreewidgetitemiterator-using/mainwindow.h | 26 +++--- doc/src/snippets/qtscript/evaluation/main.cpp | 26 +++--- .../snippets/qtscript/registeringobjects/main.cpp | 26 +++--- .../qtscript/registeringobjects/myobject.cpp | 26 +++--- .../qtscript/registeringobjects/myobject.h | 26 +++--- .../snippets/qtscript/registeringvalues/main.cpp | 26 +++--- doc/src/snippets/qtscript/scriptedslot/main.cpp | 26 +++--- doc/src/snippets/quiloader/main.cpp | 26 +++--- doc/src/snippets/quiloader/mywidget.cpp | 26 +++--- doc/src/snippets/quiloader/mywidget.h | 26 +++--- doc/src/snippets/qx11embedcontainer/main.cpp | 26 +++--- doc/src/snippets/qx11embedwidget/embedwidget.cpp | 26 +++--- doc/src/snippets/qx11embedwidget/embedwidget.h | 26 +++--- doc/src/snippets/qx11embedwidget/main.cpp | 26 +++--- doc/src/snippets/qxmlquery/bindingExample.cpp | 26 +++--- doc/src/snippets/qxmlstreamwriter/main.cpp | 26 +++--- doc/src/snippets/reading-selections/main.cpp | 26 +++--- doc/src/snippets/reading-selections/model.cpp | 26 +++--- doc/src/snippets/reading-selections/model.h | 26 +++--- doc/src/snippets/reading-selections/window.cpp | 26 +++--- doc/src/snippets/reading-selections/window.h | 26 +++--- doc/src/snippets/scribe-overview/main.cpp | 26 +++--- doc/src/snippets/scriptdebugger.cpp | 26 +++--- doc/src/snippets/seekslider.cpp | 26 +++--- doc/src/snippets/separations/finalwidget.cpp | 26 +++--- doc/src/snippets/separations/finalwidget.h | 26 +++--- doc/src/snippets/separations/main.cpp | 26 +++--- doc/src/snippets/separations/screenwidget.cpp | 26 +++--- doc/src/snippets/separations/screenwidget.h | 26 +++--- doc/src/snippets/separations/separations.qdoc | 26 +++--- doc/src/snippets/separations/viewer.cpp | 26 +++--- doc/src/snippets/separations/viewer.h | 26 +++--- doc/src/snippets/settings/settings.cpp | 26 +++--- doc/src/snippets/shareddirmodel/main.cpp | 26 +++--- doc/src/snippets/sharedemployee/employee.cpp | 26 +++--- doc/src/snippets/sharedemployee/employee.h | 26 +++--- doc/src/snippets/sharedemployee/main.cpp | 26 +++--- doc/src/snippets/sharedtablemodel/main.cpp | 26 +++--- doc/src/snippets/sharedtablemodel/model.cpp | 26 +++--- doc/src/snippets/sharedtablemodel/model.h | 26 +++--- doc/src/snippets/signalmapper/filereader.cpp | 26 +++--- doc/src/snippets/signalmapper/filereader.h | 26 +++--- doc/src/snippets/signalmapper/main.cpp | 26 +++--- doc/src/snippets/signalsandslots/lcdnumber.cpp | 26 +++--- doc/src/snippets/signalsandslots/lcdnumber.h | 26 +++--- .../snippets/signalsandslots/signalsandslots.cpp | 26 +++--- doc/src/snippets/signalsandslots/signalsandslots.h | 26 +++--- doc/src/snippets/simplemodel-use/main.cpp | 26 +++--- doc/src/snippets/splitter/splitter.cpp | 26 +++--- doc/src/snippets/splitterhandle/main.cpp | 26 +++--- doc/src/snippets/splitterhandle/splitter.cpp | 26 +++--- doc/src/snippets/splitterhandle/splitter.h | 26 +++--- doc/src/snippets/sqldatabase/sqldatabase.cpp | 26 +++--- doc/src/snippets/streaming/main.cpp | 26 +++--- doc/src/snippets/stringlistmodel/main.cpp | 26 +++--- doc/src/snippets/stringlistmodel/model.cpp | 26 +++--- doc/src/snippets/stringlistmodel/model.h | 26 +++--- doc/src/snippets/styles/styles.cpp | 26 +++--- doc/src/snippets/stylesheet/common-mistakes.cpp | 26 +++--- doc/src/snippets/textblock-formats/main.cpp | 26 +++--- doc/src/snippets/textblock-fragments/main.cpp | 26 +++--- .../snippets/textblock-fragments/mainwindow.cpp | 26 +++--- doc/src/snippets/textblock-fragments/mainwindow.h | 26 +++--- doc/src/snippets/textblock-fragments/xmlwriter.cpp | 26 +++--- doc/src/snippets/textblock-fragments/xmlwriter.h | 26 +++--- doc/src/snippets/textdocument-blocks/main.cpp | 26 +++--- .../snippets/textdocument-blocks/mainwindow.cpp | 26 +++--- doc/src/snippets/textdocument-blocks/mainwindow.h | 26 +++--- doc/src/snippets/textdocument-blocks/xmlwriter.cpp | 26 +++--- doc/src/snippets/textdocument-blocks/xmlwriter.h | 26 +++--- doc/src/snippets/textdocument-charformats/main.cpp | 26 +++--- doc/src/snippets/textdocument-css/main.cpp | 26 +++--- doc/src/snippets/textdocument-cursors/main.cpp | 26 +++--- doc/src/snippets/textdocument-find/main.cpp | 26 +++--- doc/src/snippets/textdocument-frames/main.cpp | 26 +++--- .../snippets/textdocument-frames/mainwindow.cpp | 26 +++--- doc/src/snippets/textdocument-frames/mainwindow.h | 26 +++--- doc/src/snippets/textdocument-frames/xmlwriter.cpp | 26 +++--- doc/src/snippets/textdocument-frames/xmlwriter.h | 26 +++--- doc/src/snippets/textdocument-imagedrop/main.cpp | 26 +++--- .../snippets/textdocument-imagedrop/textedit.cpp | 26 +++--- doc/src/snippets/textdocument-imagedrop/textedit.h | 26 +++--- doc/src/snippets/textdocument-imageformat/main.cpp | 26 +++--- doc/src/snippets/textdocument-images/main.cpp | 26 +++--- doc/src/snippets/textdocument-listitems/main.cpp | 26 +++--- .../snippets/textdocument-listitems/mainwindow.cpp | 26 +++--- .../snippets/textdocument-listitems/mainwindow.h | 26 +++--- doc/src/snippets/textdocument-lists/main.cpp | 26 +++--- doc/src/snippets/textdocument-lists/mainwindow.cpp | 26 +++--- doc/src/snippets/textdocument-lists/mainwindow.h | 26 +++--- doc/src/snippets/textdocument-printing/main.cpp | 26 +++--- .../snippets/textdocument-printing/mainwindow.cpp | 26 +++--- .../snippets/textdocument-printing/mainwindow.h | 26 +++--- doc/src/snippets/textdocument-resources/main.cpp | 26 +++--- doc/src/snippets/textdocument-selections/main.cpp | 26 +++--- .../textdocument-selections/mainwindow.cpp | 26 +++--- .../snippets/textdocument-selections/mainwindow.h | 26 +++--- doc/src/snippets/textdocument-tables/main.cpp | 26 +++--- .../snippets/textdocument-tables/mainwindow.cpp | 26 +++--- doc/src/snippets/textdocument-tables/mainwindow.h | 26 +++--- doc/src/snippets/textdocument-tables/xmlwriter.cpp | 26 +++--- doc/src/snippets/textdocument-tables/xmlwriter.h | 26 +++--- doc/src/snippets/textdocument-texttable/main.cpp | 26 +++--- doc/src/snippets/textdocumentendsnippet.cpp | 26 +++--- doc/src/snippets/threads/threads.cpp | 26 +++--- doc/src/snippets/threads/threads.h | 26 +++--- doc/src/snippets/timeline/main.cpp | 26 +++--- doc/src/snippets/timers/timers.cpp | 26 +++--- doc/src/snippets/transform/main.cpp | 26 +++--- doc/src/snippets/uitools/calculatorform/main.cpp | 26 +++--- doc/src/snippets/updating-selections/main.cpp | 26 +++--- doc/src/snippets/updating-selections/model.cpp | 26 +++--- doc/src/snippets/updating-selections/model.h | 26 +++--- doc/src/snippets/updating-selections/window.cpp | 26 +++--- doc/src/snippets/updating-selections/window.h | 26 +++--- doc/src/snippets/videomedia.cpp | 26 +++--- doc/src/snippets/volumeslider.cpp | 26 +++--- doc/src/snippets/whatsthis/whatsthis.cpp | 26 +++--- doc/src/snippets/widget-mask/main.cpp | 26 +++--- doc/src/snippets/widgetdelegate.cpp | 26 +++--- .../snippets/widgets-tutorial/childwidget/main.cpp | 26 +++--- .../widgets-tutorial/nestedlayouts/main.cpp | 26 +++--- .../snippets/widgets-tutorial/toplevel/main.cpp | 26 +++--- .../widgets-tutorial/windowlayout/main.cpp | 26 +++--- doc/src/snippets/xml/prettyprint/main.cpp | 26 +++--- doc/src/snippets/xml/rsslisting/handler.cpp | 26 +++--- doc/src/snippets/xml/rsslisting/handler.h | 26 +++--- doc/src/snippets/xml/rsslisting/main.cpp | 26 +++--- doc/src/snippets/xml/rsslisting/rsslisting.cpp | 26 +++--- doc/src/snippets/xml/rsslisting/rsslisting.h | 26 +++--- doc/src/snippets/xml/simpleparse/handler.cpp | 26 +++--- doc/src/snippets/xml/simpleparse/handler.h | 26 +++--- doc/src/snippets/xml/simpleparse/main.cpp | 26 +++--- doc/src/sql-driver.qdoc | 26 +++--- doc/src/styles.qdoc | 26 +++--- doc/src/stylesheet.qdoc | 26 +++--- doc/src/templates.qdoc | 26 +++--- doc/src/threads.qdoc | 26 +++--- doc/src/timers.qdoc | 26 +++--- doc/src/tools-list.qdoc | 26 +++--- doc/src/topics.qdoc | 26 +++--- doc/src/trademarks.qdoc | 26 +++--- doc/src/trolltech-webpages.qdoc | 26 +++--- doc/src/tutorials/addressbook-fr.qdoc | 26 +++--- doc/src/tutorials/addressbook.qdoc | 26 +++--- doc/src/tutorials/widgets-tutorial.qdoc | 26 +++--- doc/src/uic.qdoc | 26 +++--- doc/src/unicode.qdoc | 26 +++--- doc/src/unix-signal-handlers.qdoc | 26 +++--- doc/src/wince-customization.qdoc | 26 +++--- doc/src/wince-introduction.qdoc | 26 +++--- doc/src/wince-opengl.qdoc | 26 +++--- doc/src/winsystem.qdoc | 26 +++--- doc/src/xquery-introduction.qdoc | 26 +++--- examples/activeqt/comapp/main.cpp | 26 +++--- examples/activeqt/dotnet/wrapper/lib/networker.cpp | 26 +++--- examples/activeqt/dotnet/wrapper/lib/networker.h | 26 +++--- examples/activeqt/dotnet/wrapper/lib/tools.cpp | 26 +++--- examples/activeqt/dotnet/wrapper/lib/tools.h | 26 +++--- examples/activeqt/dotnet/wrapper/lib/worker.cpp | 26 +++--- examples/activeqt/dotnet/wrapper/lib/worker.h | 26 +++--- examples/activeqt/hierarchy/main.cpp | 26 +++--- examples/activeqt/hierarchy/objects.cpp | 26 +++--- examples/activeqt/hierarchy/objects.h | 26 +++--- examples/activeqt/menus/main.cpp | 26 +++--- examples/activeqt/menus/menus.cpp | 26 +++--- examples/activeqt/menus/menus.h | 26 +++--- examples/activeqt/multiple/ax1.h | 26 +++--- examples/activeqt/multiple/ax2.h | 26 +++--- examples/activeqt/multiple/main.cpp | 26 +++--- examples/activeqt/opengl/glbox.cpp | 26 +++--- examples/activeqt/opengl/glbox.h | 26 +++--- examples/activeqt/opengl/globjwin.cpp | 26 +++--- examples/activeqt/opengl/globjwin.h | 26 +++--- examples/activeqt/opengl/main.cpp | 26 +++--- examples/activeqt/qutlook/addressview.cpp | 26 +++--- examples/activeqt/qutlook/addressview.h | 26 +++--- examples/activeqt/qutlook/main.cpp | 26 +++--- examples/activeqt/simple/main.cpp | 26 +++--- examples/activeqt/webbrowser/main.cpp | 26 +++--- examples/activeqt/webbrowser/webaxwidget.h | 26 +++--- examples/activeqt/wrapper/main.cpp | 26 +++--- .../assistant/simpletextviewer/findfiledialog.cpp | 26 +++--- .../assistant/simpletextviewer/findfiledialog.h | 26 +++--- examples/assistant/simpletextviewer/main.cpp | 26 +++--- examples/assistant/simpletextviewer/mainwindow.cpp | 26 +++--- examples/assistant/simpletextviewer/mainwindow.h | 26 +++--- examples/dbus/complexpingpong/complexping.cpp | 26 +++--- examples/dbus/complexpingpong/complexping.h | 26 +++--- examples/dbus/complexpingpong/complexpong.cpp | 26 +++--- examples/dbus/complexpingpong/complexpong.h | 26 +++--- examples/dbus/complexpingpong/ping-common.h | 26 +++--- examples/dbus/dbus-chat/chat.cpp | 26 +++--- examples/dbus/dbus-chat/chat.h | 26 +++--- examples/dbus/dbus-chat/chat_adaptor.cpp | 26 +++--- examples/dbus/dbus-chat/chat_adaptor.h | 26 +++--- examples/dbus/dbus-chat/chat_interface.cpp | 26 +++--- examples/dbus/dbus-chat/chat_interface.h | 26 +++--- examples/dbus/listnames/listnames.cpp | 26 +++--- examples/dbus/pingpong/ping-common.h | 26 +++--- examples/dbus/pingpong/ping.cpp | 26 +++--- examples/dbus/pingpong/pong.cpp | 26 +++--- examples/dbus/pingpong/pong.h | 26 +++--- examples/dbus/remotecontrolledcar/car/car.cpp | 26 +++--- examples/dbus/remotecontrolledcar/car/car.h | 26 +++--- .../dbus/remotecontrolledcar/car/car_adaptor.cpp | 26 +++--- .../dbus/remotecontrolledcar/car/car_adaptor_p.h | 26 +++--- examples/dbus/remotecontrolledcar/car/main.cpp | 26 +++--- .../controller/car_interface.cpp | 26 +++--- .../controller/car_interface_p.h | 26 +++--- .../remotecontrolledcar/controller/controller.cpp | 26 +++--- .../remotecontrolledcar/controller/controller.h | 26 +++--- .../dbus/remotecontrolledcar/controller/main.cpp | 26 +++--- .../designer/calculatorbuilder/calculatorform.cpp | 26 +++--- .../designer/calculatorbuilder/calculatorform.h | 26 +++--- examples/designer/calculatorbuilder/main.cpp | 26 +++--- .../designer/calculatorform/calculatorform.cpp | 26 +++--- examples/designer/calculatorform/calculatorform.h | 26 +++--- examples/designer/calculatorform/main.cpp | 26 +++--- .../containerextension/multipagewidget.cpp | 26 +++--- .../designer/containerextension/multipagewidget.h | 26 +++--- .../multipagewidgetcontainerextension.cpp | 26 +++--- .../multipagewidgetcontainerextension.h | 26 +++--- .../multipagewidgetextensionfactory.cpp | 26 +++--- .../multipagewidgetextensionfactory.h | 26 +++--- .../containerextension/multipagewidgetplugin.cpp | 26 +++--- .../containerextension/multipagewidgetplugin.h | 26 +++--- .../designer/customwidgetplugin/analogclock.cpp | 26 +++--- examples/designer/customwidgetplugin/analogclock.h | 26 +++--- .../customwidgetplugin/customwidgetplugin.cpp | 26 +++--- .../customwidgetplugin/customwidgetplugin.h | 26 +++--- examples/designer/taskmenuextension/tictactoe.cpp | 26 +++--- examples/designer/taskmenuextension/tictactoe.h | 26 +++--- .../designer/taskmenuextension/tictactoedialog.cpp | 26 +++--- .../designer/taskmenuextension/tictactoedialog.h | 26 +++--- .../designer/taskmenuextension/tictactoeplugin.cpp | 26 +++--- .../designer/taskmenuextension/tictactoeplugin.h | 26 +++--- .../taskmenuextension/tictactoetaskmenu.cpp | 26 +++--- .../designer/taskmenuextension/tictactoetaskmenu.h | 26 +++--- examples/designer/worldtimeclockbuilder/main.cpp | 26 +++--- .../worldtimeclockplugin/worldtimeclock.cpp | 26 +++--- .../designer/worldtimeclockplugin/worldtimeclock.h | 26 +++--- .../worldtimeclockplugin/worldtimeclockplugin.cpp | 26 +++--- .../worldtimeclockplugin/worldtimeclockplugin.h | 26 +++--- examples/desktop/screenshot/main.cpp | 26 +++--- examples/desktop/screenshot/screenshot.cpp | 26 +++--- examples/desktop/screenshot/screenshot.h | 26 +++--- examples/desktop/systray/main.cpp | 26 +++--- examples/desktop/systray/window.cpp | 26 +++--- examples/desktop/systray/window.h | 26 +++--- examples/dialogs/classwizard/classwizard.cpp | 26 +++--- examples/dialogs/classwizard/classwizard.h | 26 +++--- examples/dialogs/classwizard/main.cpp | 26 +++--- examples/dialogs/configdialog/configdialog.cpp | 26 +++--- examples/dialogs/configdialog/configdialog.h | 26 +++--- examples/dialogs/configdialog/main.cpp | 26 +++--- examples/dialogs/configdialog/pages.cpp | 26 +++--- examples/dialogs/configdialog/pages.h | 26 +++--- examples/dialogs/extension/finddialog.cpp | 26 +++--- examples/dialogs/extension/finddialog.h | 26 +++--- examples/dialogs/extension/main.cpp | 26 +++--- examples/dialogs/findfiles/main.cpp | 26 +++--- examples/dialogs/findfiles/window.cpp | 26 +++--- examples/dialogs/findfiles/window.h | 26 +++--- examples/dialogs/licensewizard/licensewizard.cpp | 26 +++--- examples/dialogs/licensewizard/licensewizard.h | 26 +++--- examples/dialogs/licensewizard/main.cpp | 26 +++--- examples/dialogs/sipdialog/dialog.cpp | 26 +++--- examples/dialogs/sipdialog/dialog.h | 26 +++--- examples/dialogs/sipdialog/main.cpp | 26 +++--- examples/dialogs/standarddialogs/dialog.cpp | 26 +++--- examples/dialogs/standarddialogs/dialog.h | 26 +++--- examples/dialogs/standarddialogs/main.cpp | 26 +++--- examples/dialogs/tabdialog/main.cpp | 26 +++--- examples/dialogs/tabdialog/tabdialog.cpp | 26 +++--- examples/dialogs/tabdialog/tabdialog.h | 26 +++--- examples/dialogs/trivialwizard/trivialwizard.cpp | 26 +++--- .../draganddrop/delayedencoding/images/example.svg | 26 +++--- examples/draganddrop/delayedencoding/main.cpp | 26 +++--- examples/draganddrop/delayedencoding/mimedata.cpp | 26 +++--- examples/draganddrop/delayedencoding/mimedata.h | 26 +++--- .../draganddrop/delayedencoding/sourcewidget.cpp | 26 +++--- .../draganddrop/delayedencoding/sourcewidget.h | 26 +++--- examples/draganddrop/draggableicons/dragwidget.cpp | 26 +++--- examples/draganddrop/draggableicons/dragwidget.h | 26 +++--- examples/draganddrop/draggableicons/main.cpp | 26 +++--- examples/draganddrop/draggabletext/draglabel.cpp | 26 +++--- examples/draganddrop/draggabletext/draglabel.h | 26 +++--- examples/draganddrop/draggabletext/dragwidget.cpp | 26 +++--- examples/draganddrop/draggabletext/dragwidget.h | 26 +++--- examples/draganddrop/draggabletext/main.cpp | 26 +++--- examples/draganddrop/dropsite/droparea.cpp | 26 +++--- examples/draganddrop/dropsite/droparea.h | 26 +++--- examples/draganddrop/dropsite/dropsitewindow.cpp | 26 +++--- examples/draganddrop/dropsite/dropsitewindow.h | 26 +++--- examples/draganddrop/dropsite/main.cpp | 26 +++--- examples/draganddrop/fridgemagnets/draglabel.cpp | 26 +++--- examples/draganddrop/fridgemagnets/draglabel.h | 26 +++--- examples/draganddrop/fridgemagnets/dragwidget.cpp | 26 +++--- examples/draganddrop/fridgemagnets/dragwidget.h | 26 +++--- examples/draganddrop/fridgemagnets/main.cpp | 26 +++--- examples/draganddrop/puzzle/main.cpp | 26 +++--- examples/draganddrop/puzzle/mainwindow.cpp | 26 +++--- examples/draganddrop/puzzle/mainwindow.h | 26 +++--- examples/draganddrop/puzzle/pieceslist.cpp | 26 +++--- examples/draganddrop/puzzle/pieceslist.h | 26 +++--- examples/draganddrop/puzzle/puzzlewidget.cpp | 26 +++--- examples/draganddrop/puzzle/puzzlewidget.h | 26 +++--- .../basicgraphicslayouts/layoutitem.cpp | 26 +++--- .../graphicsview/basicgraphicslayouts/layoutitem.h | 26 +++--- .../graphicsview/basicgraphicslayouts/main.cpp | 26 +++--- .../graphicsview/basicgraphicslayouts/window.cpp | 26 +++--- .../graphicsview/basicgraphicslayouts/window.h | 26 +++--- examples/graphicsview/collidingmice/main.cpp | 26 +++--- examples/graphicsview/collidingmice/mouse.cpp | 26 +++--- examples/graphicsview/collidingmice/mouse.h | 26 +++--- examples/graphicsview/diagramscene/arrow.cpp | 26 +++--- examples/graphicsview/diagramscene/arrow.h | 26 +++--- examples/graphicsview/diagramscene/diagramitem.cpp | 26 +++--- examples/graphicsview/diagramscene/diagramitem.h | 26 +++--- .../graphicsview/diagramscene/diagramscene.cpp | 26 +++--- examples/graphicsview/diagramscene/diagramscene.h | 26 +++--- .../graphicsview/diagramscene/diagramtextitem.cpp | 26 +++--- .../graphicsview/diagramscene/diagramtextitem.h | 26 +++--- examples/graphicsview/diagramscene/main.cpp | 26 +++--- examples/graphicsview/diagramscene/mainwindow.cpp | 26 +++--- examples/graphicsview/diagramscene/mainwindow.h | 26 +++--- examples/graphicsview/dragdroprobot/coloritem.cpp | 26 +++--- examples/graphicsview/dragdroprobot/coloritem.h | 26 +++--- examples/graphicsview/dragdroprobot/main.cpp | 26 +++--- examples/graphicsview/dragdroprobot/robot.cpp | 26 +++--- examples/graphicsview/dragdroprobot/robot.h | 26 +++--- examples/graphicsview/elasticnodes/edge.cpp | 26 +++--- examples/graphicsview/elasticnodes/edge.h | 26 +++--- examples/graphicsview/elasticnodes/graphwidget.cpp | 26 +++--- examples/graphicsview/elasticnodes/graphwidget.h | 26 +++--- examples/graphicsview/elasticnodes/main.cpp | 26 +++--- examples/graphicsview/elasticnodes/node.cpp | 26 +++--- examples/graphicsview/elasticnodes/node.h | 26 +++--- examples/graphicsview/padnavigator/main.cpp | 26 +++--- examples/graphicsview/padnavigator/panel.cpp | 26 +++--- examples/graphicsview/padnavigator/panel.h | 26 +++--- .../graphicsview/padnavigator/roundrectitem.cpp | 26 +++--- examples/graphicsview/padnavigator/roundrectitem.h | 26 +++--- examples/graphicsview/padnavigator/splashitem.cpp | 26 +++--- examples/graphicsview/padnavigator/splashitem.h | 26 +++--- .../graphicsview/portedasteroids/animateditem.cpp | 26 +++--- .../graphicsview/portedasteroids/animateditem.h | 26 +++--- examples/graphicsview/portedasteroids/ledmeter.cpp | 26 +++--- examples/graphicsview/portedasteroids/ledmeter.h | 26 +++--- examples/graphicsview/portedasteroids/main.cpp | 26 +++--- examples/graphicsview/portedasteroids/sprites.h | 26 +++--- examples/graphicsview/portedasteroids/toplevel.cpp | 26 +++--- examples/graphicsview/portedasteroids/toplevel.h | 26 +++--- examples/graphicsview/portedasteroids/view.cpp | 26 +++--- examples/graphicsview/portedasteroids/view.h | 26 +++--- examples/graphicsview/portedcanvas/blendshadow.cpp | 26 +++--- examples/graphicsview/portedcanvas/canvas.cpp | 26 +++--- examples/graphicsview/portedcanvas/canvas.h | 26 +++--- examples/graphicsview/portedcanvas/main.cpp | 26 +++--- examples/graphicsview/portedcanvas/makeimg.cpp | 26 +++--- examples/help/contextsensitivehelp/helpbrowser.cpp | 26 +++--- examples/help/contextsensitivehelp/helpbrowser.h | 26 +++--- examples/help/contextsensitivehelp/main.cpp | 26 +++--- .../contextsensitivehelp/wateringconfigdialog.cpp | 26 +++--- .../contextsensitivehelp/wateringconfigdialog.h | 26 +++--- examples/help/remotecontrol/main.cpp | 26 +++--- examples/help/remotecontrol/remotecontrol.cpp | 26 +++--- examples/help/remotecontrol/remotecontrol.h | 26 +++--- examples/help/simpletextviewer/assistant.cpp | 26 +++--- examples/help/simpletextviewer/assistant.h | 26 +++--- examples/help/simpletextviewer/findfiledialog.cpp | 26 +++--- examples/help/simpletextviewer/findfiledialog.h | 26 +++--- examples/help/simpletextviewer/main.cpp | 26 +++--- examples/help/simpletextviewer/mainwindow.cpp | 26 +++--- examples/help/simpletextviewer/mainwindow.h | 26 +++--- examples/help/simpletextviewer/textedit.cpp | 26 +++--- examples/help/simpletextviewer/textedit.h | 26 +++--- examples/ipc/localfortuneclient/client.cpp | 26 +++--- examples/ipc/localfortuneclient/client.h | 26 +++--- examples/ipc/localfortuneclient/main.cpp | 26 +++--- examples/ipc/localfortuneserver/main.cpp | 26 +++--- examples/ipc/localfortuneserver/server.cpp | 26 +++--- examples/ipc/localfortuneserver/server.h | 26 +++--- examples/ipc/sharedmemory/dialog.cpp | 26 +++--- examples/ipc/sharedmemory/dialog.h | 26 +++--- examples/ipc/sharedmemory/main.cpp | 26 +++--- examples/itemviews/addressbook/adddialog.cpp | 26 +++--- examples/itemviews/addressbook/adddialog.h | 26 +++--- examples/itemviews/addressbook/addresswidget.cpp | 26 +++--- examples/itemviews/addressbook/addresswidget.h | 26 +++--- examples/itemviews/addressbook/main.cpp | 26 +++--- examples/itemviews/addressbook/mainwindow.cpp | 26 +++--- examples/itemviews/addressbook/mainwindow.h | 26 +++--- examples/itemviews/addressbook/newaddresstab.cpp | 26 +++--- examples/itemviews/addressbook/newaddresstab.h | 26 +++--- examples/itemviews/addressbook/tablemodel.cpp | 26 +++--- examples/itemviews/addressbook/tablemodel.h | 26 +++--- examples/itemviews/basicsortfiltermodel/main.cpp | 26 +++--- examples/itemviews/basicsortfiltermodel/window.cpp | 26 +++--- examples/itemviews/basicsortfiltermodel/window.h | 26 +++--- examples/itemviews/chart/main.cpp | 26 +++--- examples/itemviews/chart/mainwindow.cpp | 26 +++--- examples/itemviews/chart/mainwindow.h | 26 +++--- examples/itemviews/chart/pieview.cpp | 26 +++--- examples/itemviews/chart/pieview.h | 26 +++--- .../coloreditorfactory/colorlisteditor.cpp | 26 +++--- .../itemviews/coloreditorfactory/colorlisteditor.h | 26 +++--- examples/itemviews/coloreditorfactory/main.cpp | 26 +++--- examples/itemviews/coloreditorfactory/window.cpp | 26 +++--- examples/itemviews/coloreditorfactory/window.h | 26 +++--- examples/itemviews/combowidgetmapper/main.cpp | 26 +++--- examples/itemviews/combowidgetmapper/window.cpp | 26 +++--- examples/itemviews/combowidgetmapper/window.h | 26 +++--- examples/itemviews/customsortfiltermodel/main.cpp | 26 +++--- .../mysortfilterproxymodel.cpp | 26 +++--- .../customsortfiltermodel/mysortfilterproxymodel.h | 26 +++--- .../itemviews/customsortfiltermodel/window.cpp | 26 +++--- examples/itemviews/customsortfiltermodel/window.h | 26 +++--- examples/itemviews/dirview/main.cpp | 26 +++--- examples/itemviews/editabletreemodel/main.cpp | 26 +++--- .../itemviews/editabletreemodel/mainwindow.cpp | 26 +++--- examples/itemviews/editabletreemodel/mainwindow.h | 26 +++--- examples/itemviews/editabletreemodel/treeitem.cpp | 26 +++--- examples/itemviews/editabletreemodel/treeitem.h | 26 +++--- examples/itemviews/editabletreemodel/treemodel.cpp | 26 +++--- examples/itemviews/editabletreemodel/treemodel.h | 26 +++--- examples/itemviews/fetchmore/filelistmodel.cpp | 26 +++--- examples/itemviews/fetchmore/filelistmodel.h | 26 +++--- examples/itemviews/fetchmore/main.cpp | 26 +++--- examples/itemviews/fetchmore/window.cpp | 26 +++--- examples/itemviews/fetchmore/window.h | 26 +++--- .../itemviews/frozencolumn/freezetablewidget.cpp | 26 +++--- .../itemviews/frozencolumn/freezetablewidget.h | 26 +++--- examples/itemviews/frozencolumn/main.cpp | 26 +++--- examples/itemviews/pixelator/imagemodel.cpp | 26 +++--- examples/itemviews/pixelator/imagemodel.h | 26 +++--- examples/itemviews/pixelator/main.cpp | 26 +++--- examples/itemviews/pixelator/mainwindow.cpp | 26 +++--- examples/itemviews/pixelator/mainwindow.h | 26 +++--- examples/itemviews/pixelator/pixeldelegate.cpp | 26 +++--- examples/itemviews/pixelator/pixeldelegate.h | 26 +++--- examples/itemviews/puzzle/main.cpp | 26 +++--- examples/itemviews/puzzle/mainwindow.cpp | 26 +++--- examples/itemviews/puzzle/mainwindow.h | 26 +++--- examples/itemviews/puzzle/piecesmodel.cpp | 26 +++--- examples/itemviews/puzzle/piecesmodel.h | 26 +++--- examples/itemviews/puzzle/puzzlewidget.cpp | 26 +++--- examples/itemviews/puzzle/puzzlewidget.h | 26 +++--- examples/itemviews/simpledommodel/domitem.cpp | 26 +++--- examples/itemviews/simpledommodel/domitem.h | 26 +++--- examples/itemviews/simpledommodel/dommodel.cpp | 26 +++--- examples/itemviews/simpledommodel/dommodel.h | 26 +++--- examples/itemviews/simpledommodel/main.cpp | 26 +++--- examples/itemviews/simpledommodel/mainwindow.cpp | 26 +++--- examples/itemviews/simpledommodel/mainwindow.h | 26 +++--- examples/itemviews/simpletreemodel/main.cpp | 26 +++--- examples/itemviews/simpletreemodel/treeitem.cpp | 26 +++--- examples/itemviews/simpletreemodel/treeitem.h | 26 +++--- examples/itemviews/simpletreemodel/treemodel.cpp | 26 +++--- examples/itemviews/simpletreemodel/treemodel.h | 26 +++--- examples/itemviews/simplewidgetmapper/main.cpp | 26 +++--- examples/itemviews/simplewidgetmapper/window.cpp | 26 +++--- examples/itemviews/simplewidgetmapper/window.h | 26 +++--- examples/itemviews/spinboxdelegate/delegate.cpp | 26 +++--- examples/itemviews/spinboxdelegate/delegate.h | 26 +++--- examples/itemviews/spinboxdelegate/main.cpp | 26 +++--- examples/itemviews/stardelegate/main.cpp | 26 +++--- examples/itemviews/stardelegate/stardelegate.cpp | 26 +++--- examples/itemviews/stardelegate/stardelegate.h | 26 +++--- examples/itemviews/stardelegate/stareditor.cpp | 26 +++--- examples/itemviews/stardelegate/stareditor.h | 26 +++--- examples/itemviews/stardelegate/starrating.cpp | 26 +++--- examples/itemviews/stardelegate/starrating.h | 26 +++--- examples/layouts/basiclayouts/dialog.cpp | 26 +++--- examples/layouts/basiclayouts/dialog.h | 26 +++--- examples/layouts/basiclayouts/main.cpp | 26 +++--- examples/layouts/borderlayout/borderlayout.cpp | 26 +++--- examples/layouts/borderlayout/borderlayout.h | 26 +++--- examples/layouts/borderlayout/main.cpp | 26 +++--- examples/layouts/borderlayout/window.cpp | 26 +++--- examples/layouts/borderlayout/window.h | 26 +++--- examples/layouts/dynamiclayouts/dialog.cpp | 26 +++--- examples/layouts/dynamiclayouts/dialog.h | 26 +++--- examples/layouts/dynamiclayouts/main.cpp | 26 +++--- examples/layouts/flowlayout/flowlayout.cpp | 26 +++--- examples/layouts/flowlayout/flowlayout.h | 26 +++--- examples/layouts/flowlayout/main.cpp | 26 +++--- examples/layouts/flowlayout/window.cpp | 26 +++--- examples/layouts/flowlayout/window.h | 26 +++--- examples/linguist/arrowpad/arrowpad.cpp | 26 +++--- examples/linguist/arrowpad/arrowpad.h | 26 +++--- examples/linguist/arrowpad/main.cpp | 26 +++--- examples/linguist/arrowpad/mainwindow.cpp | 26 +++--- examples/linguist/arrowpad/mainwindow.h | 26 +++--- examples/linguist/hellotr/main.cpp | 26 +++--- examples/linguist/trollprint/main.cpp | 26 +++--- examples/linguist/trollprint/mainwindow.cpp | 26 +++--- examples/linguist/trollprint/mainwindow.h | 26 +++--- examples/linguist/trollprint/printpanel.cpp | 26 +++--- examples/linguist/trollprint/printpanel.h | 26 +++--- examples/mainwindows/application/main.cpp | 26 +++--- examples/mainwindows/application/mainwindow.cpp | 26 +++--- examples/mainwindows/application/mainwindow.h | 26 +++--- examples/mainwindows/dockwidgets/main.cpp | 26 +++--- examples/mainwindows/dockwidgets/mainwindow.cpp | 26 +++--- examples/mainwindows/dockwidgets/mainwindow.h | 26 +++--- examples/mainwindows/mdi/main.cpp | 26 +++--- examples/mainwindows/mdi/mainwindow.cpp | 26 +++--- examples/mainwindows/mdi/mainwindow.h | 26 +++--- examples/mainwindows/mdi/mdichild.cpp | 26 +++--- examples/mainwindows/mdi/mdichild.h | 26 +++--- examples/mainwindows/menus/main.cpp | 26 +++--- examples/mainwindows/menus/mainwindow.cpp | 26 +++--- examples/mainwindows/menus/mainwindow.h | 26 +++--- examples/mainwindows/recentfiles/main.cpp | 26 +++--- examples/mainwindows/recentfiles/mainwindow.cpp | 26 +++--- examples/mainwindows/recentfiles/mainwindow.h | 26 +++--- examples/mainwindows/sdi/main.cpp | 26 +++--- examples/mainwindows/sdi/mainwindow.cpp | 26 +++--- examples/mainwindows/sdi/mainwindow.h | 26 +++--- .../blockingfortuneclient/blockingclient.cpp | 26 +++--- .../network/blockingfortuneclient/blockingclient.h | 26 +++--- .../blockingfortuneclient/fortunethread.cpp | 26 +++--- .../network/blockingfortuneclient/fortunethread.h | 26 +++--- examples/network/blockingfortuneclient/main.cpp | 26 +++--- examples/network/broadcastreceiver/main.cpp | 26 +++--- examples/network/broadcastreceiver/receiver.cpp | 26 +++--- examples/network/broadcastreceiver/receiver.h | 26 +++--- examples/network/broadcastsender/main.cpp | 26 +++--- examples/network/broadcastsender/sender.cpp | 26 +++--- examples/network/broadcastsender/sender.h | 26 +++--- examples/network/download/main.cpp | 26 +++--- .../network/downloadmanager/downloadmanager.cpp | 26 +++--- examples/network/downloadmanager/downloadmanager.h | 26 +++--- examples/network/downloadmanager/main.cpp | 26 +++--- .../network/downloadmanager/textprogressbar.cpp | 26 +++--- examples/network/downloadmanager/textprogressbar.h | 26 +++--- examples/network/fortuneclient/client.cpp | 26 +++--- examples/network/fortuneclient/client.h | 26 +++--- examples/network/fortuneclient/main.cpp | 26 +++--- examples/network/fortuneserver/main.cpp | 26 +++--- examples/network/fortuneserver/server.cpp | 26 +++--- examples/network/fortuneserver/server.h | 26 +++--- examples/network/ftp/ftpwindow.cpp | 26 +++--- examples/network/ftp/ftpwindow.h | 26 +++--- examples/network/ftp/main.cpp | 26 +++--- examples/network/googlesuggest/googlesuggest.cpp | 26 +++--- examples/network/googlesuggest/googlesuggest.h | 26 +++--- examples/network/googlesuggest/main.cpp | 26 +++--- examples/network/googlesuggest/searchbox.cpp | 26 +++--- examples/network/googlesuggest/searchbox.h | 26 +++--- examples/network/http/httpwindow.cpp | 26 +++--- examples/network/http/httpwindow.h | 26 +++--- examples/network/http/main.cpp | 26 +++--- examples/network/loopback/dialog.cpp | 26 +++--- examples/network/loopback/dialog.h | 26 +++--- examples/network/loopback/main.cpp | 26 +++--- examples/network/network-chat/chatdialog.cpp | 26 +++--- examples/network/network-chat/chatdialog.h | 26 +++--- examples/network/network-chat/client.cpp | 26 +++--- examples/network/network-chat/client.h | 26 +++--- examples/network/network-chat/connection.cpp | 26 +++--- examples/network/network-chat/connection.h | 26 +++--- examples/network/network-chat/main.cpp | 26 +++--- examples/network/network-chat/peermanager.cpp | 26 +++--- examples/network/network-chat/peermanager.h | 26 +++--- examples/network/network-chat/server.cpp | 26 +++--- examples/network/network-chat/server.h | 26 +++--- .../network/securesocketclient/certificateinfo.cpp | 26 +++--- .../network/securesocketclient/certificateinfo.h | 26 +++--- examples/network/securesocketclient/main.cpp | 26 +++--- examples/network/securesocketclient/sslclient.cpp | 26 +++--- examples/network/securesocketclient/sslclient.h | 26 +++--- examples/network/threadedfortuneserver/dialog.cpp | 26 +++--- examples/network/threadedfortuneserver/dialog.h | 26 +++--- .../threadedfortuneserver/fortuneserver.cpp | 26 +++--- .../network/threadedfortuneserver/fortuneserver.h | 26 +++--- .../threadedfortuneserver/fortunethread.cpp | 26 +++--- .../network/threadedfortuneserver/fortunethread.h | 26 +++--- examples/network/threadedfortuneserver/main.cpp | 26 +++--- examples/network/torrent/addtorrentdialog.cpp | 26 +++--- examples/network/torrent/addtorrentdialog.h | 26 +++--- examples/network/torrent/bencodeparser.cpp | 26 +++--- examples/network/torrent/bencodeparser.h | 26 +++--- examples/network/torrent/connectionmanager.cpp | 26 +++--- examples/network/torrent/connectionmanager.h | 26 +++--- examples/network/torrent/filemanager.cpp | 26 +++--- examples/network/torrent/filemanager.h | 26 +++--- examples/network/torrent/main.cpp | 26 +++--- examples/network/torrent/mainwindow.cpp | 26 +++--- examples/network/torrent/mainwindow.h | 26 +++--- examples/network/torrent/metainfo.cpp | 26 +++--- examples/network/torrent/metainfo.h | 26 +++--- examples/network/torrent/peerwireclient.cpp | 26 +++--- examples/network/torrent/peerwireclient.h | 26 +++--- examples/network/torrent/ratecontroller.cpp | 26 +++--- examples/network/torrent/ratecontroller.h | 26 +++--- examples/network/torrent/torrentclient.cpp | 26 +++--- examples/network/torrent/torrentclient.h | 26 +++--- examples/network/torrent/torrentserver.cpp | 26 +++--- examples/network/torrent/torrentserver.h | 26 +++--- examples/network/torrent/trackerclient.cpp | 26 +++--- examples/network/torrent/trackerclient.h | 26 +++--- examples/opengl/2dpainting/glwidget.cpp | 26 +++--- examples/opengl/2dpainting/glwidget.h | 26 +++--- examples/opengl/2dpainting/helper.cpp | 26 +++--- examples/opengl/2dpainting/helper.h | 26 +++--- examples/opengl/2dpainting/main.cpp | 26 +++--- examples/opengl/2dpainting/widget.cpp | 26 +++--- examples/opengl/2dpainting/widget.h | 26 +++--- examples/opengl/2dpainting/window.cpp | 26 +++--- examples/opengl/2dpainting/window.h | 26 +++--- examples/opengl/framebufferobject/glwidget.cpp | 26 +++--- examples/opengl/framebufferobject/glwidget.h | 26 +++--- examples/opengl/framebufferobject/main.cpp | 26 +++--- examples/opengl/framebufferobject2/glwidget.cpp | 26 +++--- examples/opengl/framebufferobject2/glwidget.h | 26 +++--- examples/opengl/framebufferobject2/main.cpp | 26 +++--- examples/opengl/grabber/glwidget.cpp | 26 +++--- examples/opengl/grabber/glwidget.h | 26 +++--- examples/opengl/grabber/main.cpp | 26 +++--- examples/opengl/grabber/mainwindow.cpp | 26 +++--- examples/opengl/grabber/mainwindow.h | 26 +++--- examples/opengl/hellogl/glwidget.cpp | 26 +++--- examples/opengl/hellogl/glwidget.h | 26 +++--- examples/opengl/hellogl/main.cpp | 26 +++--- examples/opengl/hellogl/window.cpp | 26 +++--- examples/opengl/hellogl/window.h | 26 +++--- examples/opengl/hellogl_es/bubble.cpp | 26 +++--- examples/opengl/hellogl_es/bubble.h | 26 +++--- examples/opengl/hellogl_es/cl_helper.h | 26 +++--- examples/opengl/hellogl_es/glwidget.cpp | 26 +++--- examples/opengl/hellogl_es/glwidget.h | 26 +++--- examples/opengl/hellogl_es/main.cpp | 26 +++--- examples/opengl/hellogl_es/mainwindow.cpp | 26 +++--- examples/opengl/hellogl_es/mainwindow.h | 26 +++--- examples/opengl/hellogl_es2/bubble.cpp | 26 +++--- examples/opengl/hellogl_es2/bubble.h | 26 +++--- examples/opengl/hellogl_es2/glwidget.cpp | 26 +++--- examples/opengl/hellogl_es2/glwidget.h | 26 +++--- examples/opengl/hellogl_es2/main.cpp | 26 +++--- examples/opengl/hellogl_es2/mainwindow.cpp | 26 +++--- examples/opengl/hellogl_es2/mainwindow.h | 26 +++--- examples/opengl/overpainting/bubble.cpp | 26 +++--- examples/opengl/overpainting/bubble.h | 26 +++--- examples/opengl/overpainting/glwidget.cpp | 26 +++--- examples/opengl/overpainting/glwidget.h | 26 +++--- examples/opengl/overpainting/main.cpp | 26 +++--- examples/opengl/pbuffers/glwidget.cpp | 26 +++--- examples/opengl/pbuffers/glwidget.h | 26 +++--- examples/opengl/pbuffers/main.cpp | 26 +++--- examples/opengl/pbuffers2/glwidget.cpp | 26 +++--- examples/opengl/pbuffers2/glwidget.h | 26 +++--- examples/opengl/pbuffers2/main.cpp | 26 +++--- examples/opengl/samplebuffers/glwidget.cpp | 26 +++--- examples/opengl/samplebuffers/glwidget.h | 26 +++--- examples/opengl/samplebuffers/main.cpp | 26 +++--- examples/opengl/textures/glwidget.cpp | 26 +++--- examples/opengl/textures/glwidget.h | 26 +++--- examples/opengl/textures/main.cpp | 26 +++--- examples/opengl/textures/window.cpp | 26 +++--- examples/opengl/textures/window.h | 26 +++--- examples/painting/basicdrawing/main.cpp | 26 +++--- examples/painting/basicdrawing/renderarea.cpp | 26 +++--- examples/painting/basicdrawing/renderarea.h | 26 +++--- examples/painting/basicdrawing/window.cpp | 26 +++--- examples/painting/basicdrawing/window.h | 26 +++--- .../painting/concentriccircles/circlewidget.cpp | 26 +++--- examples/painting/concentriccircles/circlewidget.h | 26 +++--- examples/painting/concentriccircles/main.cpp | 26 +++--- examples/painting/concentriccircles/window.cpp | 26 +++--- examples/painting/concentriccircles/window.h | 26 +++--- examples/painting/fontsampler/main.cpp | 26 +++--- examples/painting/fontsampler/mainwindow.cpp | 26 +++--- examples/painting/fontsampler/mainwindow.h | 26 +++--- .../painting/imagecomposition/imagecomposer.cpp | 26 +++--- examples/painting/imagecomposition/imagecomposer.h | 26 +++--- examples/painting/imagecomposition/main.cpp | 26 +++--- examples/painting/painterpaths/main.cpp | 26 +++--- examples/painting/painterpaths/renderarea.cpp | 26 +++--- examples/painting/painterpaths/renderarea.h | 26 +++--- examples/painting/painterpaths/window.cpp | 26 +++--- examples/painting/painterpaths/window.h | 26 +++--- examples/painting/svggenerator/displaywidget.cpp | 26 +++--- examples/painting/svggenerator/displaywidget.h | 26 +++--- examples/painting/svggenerator/main.cpp | 26 +++--- examples/painting/svggenerator/window.cpp | 26 +++--- examples/painting/svggenerator/window.h | 26 +++--- examples/painting/svgviewer/main.cpp | 26 +++--- examples/painting/svgviewer/mainwindow.cpp | 26 +++--- examples/painting/svgviewer/mainwindow.h | 26 +++--- examples/painting/svgviewer/svgview.cpp | 26 +++--- examples/painting/svgviewer/svgview.h | 26 +++--- examples/painting/transformations/main.cpp | 26 +++--- examples/painting/transformations/renderarea.cpp | 26 +++--- examples/painting/transformations/renderarea.h | 26 +++--- examples/painting/transformations/window.cpp | 26 +++--- examples/painting/transformations/window.h | 26 +++--- examples/phonon/capabilities/main.cpp | 26 +++--- examples/phonon/capabilities/window.cpp | 26 +++--- examples/phonon/capabilities/window.h | 26 +++--- examples/phonon/musicplayer/main.cpp | 26 +++--- examples/phonon/musicplayer/mainwindow.cpp | 26 +++--- examples/phonon/musicplayer/mainwindow.h | 26 +++--- examples/qmake/precompile/main.cpp | 26 +++--- examples/qmake/precompile/mydialog.cpp | 26 +++--- examples/qmake/precompile/mydialog.h | 26 +++--- examples/qmake/precompile/myobject.cpp | 26 +++--- examples/qmake/precompile/myobject.h | 26 +++--- examples/qmake/precompile/stable.h | 26 +++--- examples/qmake/precompile/util.cpp | 26 +++--- examples/qmake/tutorial/hello.cpp | 26 +++--- examples/qmake/tutorial/hello.h | 26 +++--- examples/qmake/tutorial/hellounix.cpp | 26 +++--- examples/qmake/tutorial/hellowin.cpp | 26 +++--- examples/qmake/tutorial/main.cpp | 26 +++--- .../qtconcurrent/imagescaling/imagescaling.cpp | 26 +++--- examples/qtconcurrent/imagescaling/imagescaling.h | 26 +++--- examples/qtconcurrent/imagescaling/main.cpp | 26 +++--- examples/qtconcurrent/map/main.cpp | 26 +++--- examples/qtconcurrent/progressdialog/main.cpp | 26 +++--- examples/qtconcurrent/runfunction/main.cpp | 26 +++--- examples/qtconcurrent/wordcount/main.cpp | 26 +++--- examples/qtestlib/tutorial1/testqstring.cpp | 26 +++--- examples/qtestlib/tutorial2/testqstring.cpp | 26 +++--- examples/qtestlib/tutorial3/testgui.cpp | 26 +++--- examples/qtestlib/tutorial4/testgui.cpp | 26 +++--- examples/qtestlib/tutorial5/benchmarking.cpp | 26 +++--- examples/qws/ahigl/qscreenahigl_qws.cpp | 26 +++--- examples/qws/ahigl/qscreenahigl_qws.h | 26 +++--- examples/qws/ahigl/qscreenahiglplugin.cpp | 26 +++--- examples/qws/ahigl/qwindowsurface_ahigl.cpp | 26 +++--- examples/qws/ahigl/qwindowsurface_ahigl_p.h | 26 +++--- examples/qws/dbscreen/dbscreen.cpp | 26 +++--- examples/qws/dbscreen/dbscreen.h | 26 +++--- examples/qws/dbscreen/dbscreendriverplugin.cpp | 26 +++--- examples/qws/framebuffer/main.c | 26 +++--- examples/qws/mousecalibration/calibration.cpp | 26 +++--- examples/qws/mousecalibration/calibration.h | 26 +++--- examples/qws/mousecalibration/main.cpp | 26 +++--- examples/qws/mousecalibration/scribblewidget.cpp | 26 +++--- examples/qws/mousecalibration/scribblewidget.h | 26 +++--- examples/qws/simpledecoration/analogclock.cpp | 26 +++--- examples/qws/simpledecoration/analogclock.h | 26 +++--- examples/qws/simpledecoration/main.cpp | 26 +++--- examples/qws/simpledecoration/mydecoration.cpp | 26 +++--- examples/qws/simpledecoration/mydecoration.h | 26 +++--- examples/qws/svgalib/svgalibpaintdevice.cpp | 26 +++--- examples/qws/svgalib/svgalibpaintdevice.h | 26 +++--- examples/qws/svgalib/svgalibpaintengine.cpp | 26 +++--- examples/qws/svgalib/svgalibpaintengine.h | 26 +++--- examples/qws/svgalib/svgalibplugin.cpp | 26 +++--- examples/qws/svgalib/svgalibscreen.cpp | 26 +++--- examples/qws/svgalib/svgalibscreen.h | 26 +++--- examples/qws/svgalib/svgalibsurface.cpp | 26 +++--- examples/qws/svgalib/svgalibsurface.h | 26 +++--- examples/richtext/calendar/main.cpp | 26 +++--- examples/richtext/calendar/mainwindow.cpp | 26 +++--- examples/richtext/calendar/mainwindow.h | 26 +++--- examples/richtext/orderform/detailsdialog.cpp | 26 +++--- examples/richtext/orderform/detailsdialog.h | 26 +++--- examples/richtext/orderform/main.cpp | 26 +++--- examples/richtext/orderform/mainwindow.cpp | 26 +++--- examples/richtext/orderform/mainwindow.h | 26 +++--- .../richtext/syntaxhighlighter/highlighter.cpp | 26 +++--- examples/richtext/syntaxhighlighter/highlighter.h | 26 +++--- examples/richtext/syntaxhighlighter/main.cpp | 26 +++--- examples/richtext/syntaxhighlighter/mainwindow.cpp | 26 +++--- examples/richtext/syntaxhighlighter/mainwindow.h | 26 +++--- examples/richtext/textobject/main.cpp | 26 +++--- examples/richtext/textobject/svgtextobject.cpp | 26 +++--- examples/richtext/textobject/svgtextobject.h | 26 +++--- examples/richtext/textobject/window.cpp | 26 +++--- examples/richtext/textobject/window.h | 26 +++--- examples/script/calculator/main.cpp | 26 +++--- examples/script/context2d/context2d.cpp | 26 +++--- examples/script/context2d/context2d.h | 26 +++--- examples/script/context2d/domimage.cpp | 26 +++--- examples/script/context2d/domimage.h | 26 +++--- examples/script/context2d/environment.cpp | 26 +++--- examples/script/context2d/environment.h | 26 +++--- examples/script/context2d/main.cpp | 26 +++--- examples/script/context2d/qcontext2dcanvas.cpp | 26 +++--- examples/script/context2d/qcontext2dcanvas.h | 26 +++--- examples/script/context2d/window.cpp | 26 +++--- examples/script/context2d/window.h | 26 +++--- examples/script/customclass/bytearrayclass.cpp | 26 +++--- examples/script/customclass/bytearrayclass.h | 26 +++--- examples/script/customclass/bytearrayprototype.cpp | 26 +++--- examples/script/customclass/bytearrayprototype.h | 26 +++--- examples/script/customclass/main.cpp | 26 +++--- examples/script/defaultprototypes/main.cpp | 26 +++--- examples/script/defaultprototypes/prototypes.cpp | 26 +++--- examples/script/defaultprototypes/prototypes.h | 26 +++--- examples/script/helloscript/main.cpp | 26 +++--- examples/script/marshal/main.cpp | 26 +++--- examples/script/qscript/main.cpp | 26 +++--- examples/script/qsdbg/main.cpp | 26 +++--- examples/script/qsdbg/scriptbreakpointmanager.cpp | 26 +++--- examples/script/qsdbg/scriptbreakpointmanager.h | 26 +++--- examples/script/qsdbg/scriptdebugger.cpp | 26 +++--- examples/script/qsdbg/scriptdebugger.h | 26 +++--- examples/script/qstetrix/main.cpp | 26 +++--- examples/script/qstetrix/tetrixboard.cpp | 26 +++--- examples/script/qstetrix/tetrixboard.h | 26 +++--- examples/sql/cachedtable/main.cpp | 26 +++--- examples/sql/cachedtable/tableeditor.cpp | 26 +++--- examples/sql/cachedtable/tableeditor.h | 26 +++--- examples/sql/connection.h | 26 +++--- examples/sql/drilldown/imageitem.cpp | 26 +++--- examples/sql/drilldown/imageitem.h | 26 +++--- examples/sql/drilldown/informationwindow.cpp | 26 +++--- examples/sql/drilldown/informationwindow.h | 26 +++--- examples/sql/drilldown/main.cpp | 26 +++--- examples/sql/drilldown/view.cpp | 26 +++--- examples/sql/drilldown/view.h | 26 +++--- examples/sql/masterdetail/database.h | 26 +++--- examples/sql/masterdetail/dialog.cpp | 26 +++--- examples/sql/masterdetail/dialog.h | 26 +++--- examples/sql/masterdetail/main.cpp | 26 +++--- examples/sql/masterdetail/mainwindow.cpp | 26 +++--- examples/sql/masterdetail/mainwindow.h | 26 +++--- examples/sql/querymodel/customsqlmodel.cpp | 26 +++--- examples/sql/querymodel/customsqlmodel.h | 26 +++--- examples/sql/querymodel/editablesqlmodel.cpp | 26 +++--- examples/sql/querymodel/editablesqlmodel.h | 26 +++--- examples/sql/querymodel/main.cpp | 26 +++--- .../relationaltablemodel/relationaltablemodel.cpp | 26 +++--- examples/sql/sqlwidgetmapper/main.cpp | 26 +++--- examples/sql/sqlwidgetmapper/window.cpp | 26 +++--- examples/sql/sqlwidgetmapper/window.h | 26 +++--- examples/sql/tablemodel/tablemodel.cpp | 26 +++--- examples/threads/mandelbrot/main.cpp | 26 +++--- examples/threads/mandelbrot/mandelbrotwidget.cpp | 26 +++--- examples/threads/mandelbrot/mandelbrotwidget.h | 26 +++--- examples/threads/mandelbrot/renderthread.cpp | 26 +++--- examples/threads/mandelbrot/renderthread.h | 26 +++--- examples/threads/queuedcustomtype/block.cpp | 26 +++--- examples/threads/queuedcustomtype/block.h | 26 +++--- examples/threads/queuedcustomtype/main.cpp | 26 +++--- examples/threads/queuedcustomtype/renderthread.cpp | 26 +++--- examples/threads/queuedcustomtype/renderthread.h | 26 +++--- examples/threads/queuedcustomtype/window.cpp | 26 +++--- examples/threads/queuedcustomtype/window.h | 26 +++--- examples/threads/semaphores/semaphores.cpp | 26 +++--- examples/threads/waitconditions/waitconditions.cpp | 26 +++--- examples/tools/codecs/main.cpp | 26 +++--- examples/tools/codecs/mainwindow.cpp | 26 +++--- examples/tools/codecs/mainwindow.h | 26 +++--- examples/tools/codecs/previewform.cpp | 26 +++--- examples/tools/codecs/previewform.h | 26 +++--- examples/tools/completer/dirmodel.cpp | 26 +++--- examples/tools/completer/dirmodel.h | 26 +++--- examples/tools/completer/main.cpp | 26 +++--- examples/tools/completer/mainwindow.cpp | 26 +++--- examples/tools/completer/mainwindow.h | 26 +++--- examples/tools/customcompleter/main.cpp | 26 +++--- examples/tools/customcompleter/mainwindow.cpp | 26 +++--- examples/tools/customcompleter/mainwindow.h | 26 +++--- examples/tools/customcompleter/textedit.cpp | 26 +++--- examples/tools/customcompleter/textedit.h | 26 +++--- examples/tools/customtype/main.cpp | 26 +++--- examples/tools/customtype/message.cpp | 26 +++--- examples/tools/customtype/message.h | 26 +++--- examples/tools/customtypesending/main.cpp | 26 +++--- examples/tools/customtypesending/message.cpp | 26 +++--- examples/tools/customtypesending/message.h | 26 +++--- examples/tools/customtypesending/window.cpp | 26 +++--- examples/tools/customtypesending/window.h | 26 +++--- .../tools/echoplugin/echowindow/echointerface.h | 26 +++--- .../tools/echoplugin/echowindow/echowindow.cpp | 26 +++--- examples/tools/echoplugin/echowindow/echowindow.h | 26 +++--- examples/tools/echoplugin/echowindow/main.cpp | 26 +++--- examples/tools/echoplugin/plugin/echoplugin.cpp | 26 +++--- examples/tools/echoplugin/plugin/echoplugin.h | 26 +++--- examples/tools/i18n/languagechooser.cpp | 26 +++--- examples/tools/i18n/languagechooser.h | 26 +++--- examples/tools/i18n/main.cpp | 26 +++--- examples/tools/i18n/mainwindow.cpp | 26 +++--- examples/tools/i18n/mainwindow.h | 26 +++--- examples/tools/plugandpaint/interfaces.h | 26 +++--- examples/tools/plugandpaint/main.cpp | 26 +++--- examples/tools/plugandpaint/mainwindow.cpp | 26 +++--- examples/tools/plugandpaint/mainwindow.h | 26 +++--- examples/tools/plugandpaint/paintarea.cpp | 26 +++--- examples/tools/plugandpaint/paintarea.h | 26 +++--- examples/tools/plugandpaint/plugindialog.cpp | 26 +++--- examples/tools/plugandpaint/plugindialog.h | 26 +++--- .../basictools/basictoolsplugin.cpp | 26 +++--- .../basictools/basictoolsplugin.h | 26 +++--- .../extrafilters/extrafiltersplugin.cpp | 26 +++--- .../extrafilters/extrafiltersplugin.h | 26 +++--- examples/tools/regexp/main.cpp | 26 +++--- examples/tools/regexp/regexpdialog.cpp | 26 +++--- examples/tools/regexp/regexpdialog.h | 26 +++--- examples/tools/settingseditor/locationdialog.cpp | 26 +++--- examples/tools/settingseditor/locationdialog.h | 26 +++--- examples/tools/settingseditor/main.cpp | 26 +++--- examples/tools/settingseditor/mainwindow.cpp | 26 +++--- examples/tools/settingseditor/mainwindow.h | 26 +++--- examples/tools/settingseditor/settingstree.cpp | 26 +++--- examples/tools/settingseditor/settingstree.h | 26 +++--- examples/tools/settingseditor/variantdelegate.cpp | 26 +++--- examples/tools/settingseditor/variantdelegate.h | 26 +++--- examples/tools/styleplugin/plugin/simplestyle.cpp | 26 +++--- examples/tools/styleplugin/plugin/simplestyle.h | 26 +++--- .../tools/styleplugin/plugin/simplestyleplugin.cpp | 26 +++--- .../tools/styleplugin/plugin/simplestyleplugin.h | 26 +++--- examples/tools/styleplugin/stylewindow/main.cpp | 26 +++--- .../tools/styleplugin/stylewindow/stylewindow.cpp | 26 +++--- .../tools/styleplugin/stylewindow/stylewindow.h | 26 +++--- examples/tools/treemodelcompleter/main.cpp | 26 +++--- examples/tools/treemodelcompleter/mainwindow.cpp | 26 +++--- examples/tools/treemodelcompleter/mainwindow.h | 26 +++--- .../treemodelcompleter/treemodelcompleter.cpp | 26 +++--- .../tools/treemodelcompleter/treemodelcompleter.h | 26 +++--- examples/tools/undoframework/commands.cpp | 26 +++--- examples/tools/undoframework/commands.h | 26 +++--- examples/tools/undoframework/diagramitem.cpp | 26 +++--- examples/tools/undoframework/diagramitem.h | 26 +++--- examples/tools/undoframework/diagramscene.cpp | 26 +++--- examples/tools/undoframework/diagramscene.h | 26 +++--- examples/tools/undoframework/main.cpp | 26 +++--- examples/tools/undoframework/mainwindow.cpp | 26 +++--- examples/tools/undoframework/mainwindow.h | 26 +++--- .../tutorials/addressbook-fr/part1/addressbook.cpp | 26 +++--- .../tutorials/addressbook-fr/part1/addressbook.h | 26 +++--- examples/tutorials/addressbook-fr/part1/main.cpp | 26 +++--- .../tutorials/addressbook-fr/part2/addressbook.cpp | 26 +++--- .../tutorials/addressbook-fr/part2/addressbook.h | 26 +++--- examples/tutorials/addressbook-fr/part2/main.cpp | 26 +++--- .../tutorials/addressbook-fr/part3/addressbook.cpp | 26 +++--- .../tutorials/addressbook-fr/part3/addressbook.h | 26 +++--- examples/tutorials/addressbook-fr/part3/main.cpp | 26 +++--- .../tutorials/addressbook-fr/part4/addressbook.cpp | 26 +++--- .../tutorials/addressbook-fr/part4/addressbook.h | 26 +++--- examples/tutorials/addressbook-fr/part4/main.cpp | 26 +++--- .../tutorials/addressbook-fr/part5/addressbook.cpp | 26 +++--- .../tutorials/addressbook-fr/part5/addressbook.h | 26 +++--- .../tutorials/addressbook-fr/part5/finddialog.cpp | 26 +++--- .../tutorials/addressbook-fr/part5/finddialog.h | 26 +++--- examples/tutorials/addressbook-fr/part5/main.cpp | 26 +++--- .../tutorials/addressbook-fr/part6/addressbook.cpp | 26 +++--- .../tutorials/addressbook-fr/part6/addressbook.h | 26 +++--- .../tutorials/addressbook-fr/part6/finddialog.cpp | 26 +++--- .../tutorials/addressbook-fr/part6/finddialog.h | 26 +++--- examples/tutorials/addressbook-fr/part6/main.cpp | 26 +++--- .../tutorials/addressbook-fr/part7/addressbook.cpp | 26 +++--- .../tutorials/addressbook-fr/part7/addressbook.h | 26 +++--- .../tutorials/addressbook-fr/part7/finddialog.cpp | 26 +++--- .../tutorials/addressbook-fr/part7/finddialog.h | 26 +++--- examples/tutorials/addressbook-fr/part7/main.cpp | 26 +++--- .../tutorials/addressbook/part1/addressbook.cpp | 26 +++--- examples/tutorials/addressbook/part1/addressbook.h | 26 +++--- examples/tutorials/addressbook/part1/main.cpp | 26 +++--- .../tutorials/addressbook/part2/addressbook.cpp | 26 +++--- examples/tutorials/addressbook/part2/addressbook.h | 26 +++--- examples/tutorials/addressbook/part2/main.cpp | 26 +++--- .../tutorials/addressbook/part3/addressbook.cpp | 26 +++--- examples/tutorials/addressbook/part3/addressbook.h | 26 +++--- examples/tutorials/addressbook/part3/main.cpp | 26 +++--- .../tutorials/addressbook/part4/addressbook.cpp | 26 +++--- examples/tutorials/addressbook/part4/addressbook.h | 26 +++--- examples/tutorials/addressbook/part4/main.cpp | 26 +++--- .../tutorials/addressbook/part5/addressbook.cpp | 26 +++--- examples/tutorials/addressbook/part5/addressbook.h | 26 +++--- .../tutorials/addressbook/part5/finddialog.cpp | 26 +++--- examples/tutorials/addressbook/part5/finddialog.h | 26 +++--- examples/tutorials/addressbook/part5/main.cpp | 26 +++--- .../tutorials/addressbook/part6/addressbook.cpp | 26 +++--- examples/tutorials/addressbook/part6/addressbook.h | 26 +++--- .../tutorials/addressbook/part6/finddialog.cpp | 26 +++--- examples/tutorials/addressbook/part6/finddialog.h | 26 +++--- examples/tutorials/addressbook/part6/main.cpp | 26 +++--- .../tutorials/addressbook/part7/addressbook.cpp | 26 +++--- examples/tutorials/addressbook/part7/addressbook.h | 26 +++--- .../tutorials/addressbook/part7/finddialog.cpp | 26 +++--- examples/tutorials/addressbook/part7/finddialog.h | 26 +++--- examples/tutorials/addressbook/part7/main.cpp | 26 +++--- .../uitools/multipleinheritance/calculatorform.cpp | 26 +++--- .../uitools/multipleinheritance/calculatorform.h | 26 +++--- examples/uitools/multipleinheritance/main.cpp | 26 +++--- examples/uitools/textfinder/main.cpp | 26 +++--- examples/uitools/textfinder/textfinder.cpp | 26 +++--- examples/uitools/textfinder/textfinder.h | 26 +++--- examples/webkit/fancybrowser/main.cpp | 26 +++--- examples/webkit/fancybrowser/mainwindow.cpp | 26 +++--- examples/webkit/fancybrowser/mainwindow.h | 26 +++--- examples/webkit/formextractor/formextractor.cpp | 26 +++--- examples/webkit/formextractor/formextractor.h | 26 +++--- examples/webkit/formextractor/main.cpp | 26 +++--- examples/webkit/formextractor/mainwindow.cpp | 26 +++--- examples/webkit/formextractor/mainwindow.h | 26 +++--- examples/webkit/googlechat/googlechat.cpp | 26 +++--- examples/webkit/googlechat/googlechat.h | 26 +++--- examples/webkit/googlechat/main.cpp | 26 +++--- examples/webkit/previewer/main.cpp | 26 +++--- examples/webkit/previewer/mainwindow.cpp | 26 +++--- examples/webkit/previewer/mainwindow.h | 26 +++--- examples/webkit/previewer/previewer.cpp | 26 +++--- examples/webkit/previewer/previewer.h | 26 +++--- examples/widgets/analogclock/analogclock.cpp | 26 +++--- examples/widgets/analogclock/analogclock.h | 26 +++--- examples/widgets/analogclock/main.cpp | 26 +++--- examples/widgets/calculator/button.cpp | 26 +++--- examples/widgets/calculator/button.h | 26 +++--- examples/widgets/calculator/calculator.cpp | 26 +++--- examples/widgets/calculator/calculator.h | 26 +++--- examples/widgets/calculator/main.cpp | 26 +++--- examples/widgets/calendarwidget/main.cpp | 26 +++--- examples/widgets/calendarwidget/window.cpp | 26 +++--- examples/widgets/calendarwidget/window.h | 26 +++--- examples/widgets/charactermap/characterwidget.cpp | 26 +++--- examples/widgets/charactermap/characterwidget.h | 26 +++--- examples/widgets/charactermap/main.cpp | 26 +++--- examples/widgets/charactermap/mainwindow.cpp | 26 +++--- examples/widgets/charactermap/mainwindow.h | 26 +++--- examples/widgets/codeeditor/codeeditor.cpp | 26 +++--- examples/widgets/codeeditor/codeeditor.h | 26 +++--- examples/widgets/codeeditor/main.cpp | 26 +++--- examples/widgets/digitalclock/digitalclock.cpp | 26 +++--- examples/widgets/digitalclock/digitalclock.h | 26 +++--- examples/widgets/digitalclock/main.cpp | 26 +++--- examples/widgets/groupbox/main.cpp | 26 +++--- examples/widgets/groupbox/window.cpp | 26 +++--- examples/widgets/groupbox/window.h | 26 +++--- examples/widgets/icons/iconpreviewarea.cpp | 26 +++--- examples/widgets/icons/iconpreviewarea.h | 26 +++--- examples/widgets/icons/iconsizespinbox.cpp | 26 +++--- examples/widgets/icons/iconsizespinbox.h | 26 +++--- examples/widgets/icons/imagedelegate.cpp | 26 +++--- examples/widgets/icons/imagedelegate.h | 26 +++--- examples/widgets/icons/main.cpp | 26 +++--- examples/widgets/icons/mainwindow.cpp | 26 +++--- examples/widgets/icons/mainwindow.h | 26 +++--- examples/widgets/imageviewer/imageviewer.cpp | 26 +++--- examples/widgets/imageviewer/imageviewer.h | 26 +++--- examples/widgets/imageviewer/main.cpp | 26 +++--- examples/widgets/lineedits/main.cpp | 26 +++--- examples/widgets/lineedits/window.cpp | 26 +++--- examples/widgets/lineedits/window.h | 26 +++--- examples/widgets/movie/main.cpp | 26 +++--- examples/widgets/movie/movieplayer.cpp | 26 +++--- examples/widgets/movie/movieplayer.h | 26 +++--- examples/widgets/scribble/main.cpp | 26 +++--- examples/widgets/scribble/mainwindow.cpp | 26 +++--- examples/widgets/scribble/mainwindow.h | 26 +++--- examples/widgets/scribble/scribblearea.cpp | 26 +++--- examples/widgets/scribble/scribblearea.h | 26 +++--- examples/widgets/shapedclock/main.cpp | 26 +++--- examples/widgets/shapedclock/shapedclock.cpp | 26 +++--- examples/widgets/shapedclock/shapedclock.h | 26 +++--- examples/widgets/sliders/main.cpp | 26 +++--- examples/widgets/sliders/slidersgroup.cpp | 26 +++--- examples/widgets/sliders/slidersgroup.h | 26 +++--- examples/widgets/sliders/window.cpp | 26 +++--- examples/widgets/sliders/window.h | 26 +++--- examples/widgets/spinboxes/main.cpp | 26 +++--- examples/widgets/spinboxes/window.cpp | 26 +++--- examples/widgets/spinboxes/window.h | 26 +++--- examples/widgets/styles/main.cpp | 26 +++--- examples/widgets/styles/norwegianwoodstyle.cpp | 26 +++--- examples/widgets/styles/norwegianwoodstyle.h | 26 +++--- examples/widgets/styles/widgetgallery.cpp | 26 +++--- examples/widgets/styles/widgetgallery.h | 26 +++--- examples/widgets/stylesheet/main.cpp | 26 +++--- examples/widgets/stylesheet/mainwindow.cpp | 26 +++--- examples/widgets/stylesheet/mainwindow.h | 26 +++--- examples/widgets/stylesheet/stylesheeteditor.cpp | 26 +++--- examples/widgets/stylesheet/stylesheeteditor.h | 26 +++--- examples/widgets/tablet/main.cpp | 26 +++--- examples/widgets/tablet/mainwindow.cpp | 26 +++--- examples/widgets/tablet/mainwindow.h | 26 +++--- examples/widgets/tablet/tabletapplication.cpp | 26 +++--- examples/widgets/tablet/tabletapplication.h | 26 +++--- examples/widgets/tablet/tabletcanvas.cpp | 26 +++--- examples/widgets/tablet/tabletcanvas.h | 26 +++--- examples/widgets/tetrix/main.cpp | 26 +++--- examples/widgets/tetrix/tetrixboard.cpp | 26 +++--- examples/widgets/tetrix/tetrixboard.h | 26 +++--- examples/widgets/tetrix/tetrixpiece.cpp | 26 +++--- examples/widgets/tetrix/tetrixpiece.h | 26 +++--- examples/widgets/tetrix/tetrixwindow.cpp | 26 +++--- examples/widgets/tetrix/tetrixwindow.h | 26 +++--- examples/widgets/tooltips/main.cpp | 26 +++--- examples/widgets/tooltips/shapeitem.cpp | 26 +++--- examples/widgets/tooltips/shapeitem.h | 26 +++--- examples/widgets/tooltips/sortingbox.cpp | 26 +++--- examples/widgets/tooltips/sortingbox.h | 26 +++--- examples/widgets/validators/ledwidget.cpp | 26 +++--- examples/widgets/validators/ledwidget.h | 26 +++--- examples/widgets/validators/localeselector.cpp | 26 +++--- examples/widgets/validators/localeselector.h | 26 +++--- examples/widgets/validators/main.cpp | 26 +++--- examples/widgets/wiggly/dialog.cpp | 26 +++--- examples/widgets/wiggly/dialog.h | 26 +++--- examples/widgets/wiggly/main.cpp | 26 +++--- examples/widgets/wiggly/wigglywidget.cpp | 26 +++--- examples/widgets/wiggly/wigglywidget.h | 26 +++--- examples/widgets/windowflags/controllerwindow.cpp | 26 +++--- examples/widgets/windowflags/controllerwindow.h | 26 +++--- examples/widgets/windowflags/main.cpp | 26 +++--- examples/widgets/windowflags/previewwindow.cpp | 26 +++--- examples/widgets/windowflags/previewwindow.h | 26 +++--- examples/xml/dombookmarks/main.cpp | 26 +++--- examples/xml/dombookmarks/mainwindow.cpp | 26 +++--- examples/xml/dombookmarks/mainwindow.h | 26 +++--- examples/xml/dombookmarks/xbeltree.cpp | 26 +++--- examples/xml/dombookmarks/xbeltree.h | 26 +++--- examples/xml/rsslisting/main.cpp | 26 +++--- examples/xml/rsslisting/rsslisting.cpp | 26 +++--- examples/xml/rsslisting/rsslisting.h | 26 +++--- examples/xml/saxbookmarks/main.cpp | 26 +++--- examples/xml/saxbookmarks/mainwindow.cpp | 26 +++--- examples/xml/saxbookmarks/mainwindow.h | 26 +++--- examples/xml/saxbookmarks/xbelgenerator.cpp | 26 +++--- examples/xml/saxbookmarks/xbelgenerator.h | 26 +++--- examples/xml/saxbookmarks/xbelhandler.cpp | 26 +++--- examples/xml/saxbookmarks/xbelhandler.h | 26 +++--- examples/xml/streambookmarks/main.cpp | 26 +++--- examples/xml/streambookmarks/mainwindow.cpp | 26 +++--- examples/xml/streambookmarks/mainwindow.h | 26 +++--- examples/xml/streambookmarks/xbelreader.cpp | 26 +++--- examples/xml/streambookmarks/xbelreader.h | 26 +++--- examples/xml/streambookmarks/xbelwriter.cpp | 26 +++--- examples/xml/streambookmarks/xbelwriter.h | 26 +++--- examples/xml/xmlstreamlint/main.cpp | 26 +++--- examples/xmlpatterns/filetree/filetree.cpp | 26 +++--- examples/xmlpatterns/filetree/filetree.h | 26 +++--- examples/xmlpatterns/filetree/main.cpp | 26 +++--- examples/xmlpatterns/filetree/mainwindow.cpp | 26 +++--- examples/xmlpatterns/filetree/mainwindow.h | 26 +++--- examples/xmlpatterns/qobjectxmlmodel/main.cpp | 26 +++--- .../xmlpatterns/qobjectxmlmodel/mainwindow.cpp | 26 +++--- examples/xmlpatterns/qobjectxmlmodel/mainwindow.h | 26 +++--- .../qobjectxmlmodel/qobjectxmlmodel.cpp | 26 +++--- .../xmlpatterns/qobjectxmlmodel/qobjectxmlmodel.h | 26 +++--- examples/xmlpatterns/recipes/main.cpp | 26 +++--- examples/xmlpatterns/recipes/querymainwindow.cpp | 26 +++--- examples/xmlpatterns/recipes/querymainwindow.h | 26 +++--- .../xmlpatterns/shared/xmlsyntaxhighlighter.cpp | 26 +++--- examples/xmlpatterns/shared/xmlsyntaxhighlighter.h | 26 +++--- examples/xmlpatterns/trafficinfo/main.cpp | 26 +++--- examples/xmlpatterns/trafficinfo/mainwindow.cpp | 26 +++--- examples/xmlpatterns/trafficinfo/mainwindow.h | 26 +++--- examples/xmlpatterns/trafficinfo/stationdialog.cpp | 26 +++--- examples/xmlpatterns/trafficinfo/stationdialog.h | 26 +++--- examples/xmlpatterns/trafficinfo/stationquery.cpp | 26 +++--- examples/xmlpatterns/trafficinfo/stationquery.h | 26 +++--- examples/xmlpatterns/trafficinfo/timequery.cpp | 26 +++--- examples/xmlpatterns/trafficinfo/timequery.h | 26 +++--- .../xmlpatterns/xquery/globalVariables/globals.cpp | 26 +++--- mkspecs/aix-g++-64/qplatformdefs.h | 26 +++--- mkspecs/aix-g++/qplatformdefs.h | 26 +++--- mkspecs/aix-xlc-64/qplatformdefs.h | 26 +++--- mkspecs/aix-xlc/qplatformdefs.h | 26 +++--- mkspecs/cygwin-g++/qplatformdefs.h | 26 +++--- mkspecs/darwin-g++/qplatformdefs.h | 26 +++--- mkspecs/freebsd-g++/qplatformdefs.h | 26 +++--- mkspecs/freebsd-g++34/qplatformdefs.h | 26 +++--- mkspecs/freebsd-g++40/qplatformdefs.h | 26 +++--- mkspecs/freebsd-icc/qplatformdefs.h | 26 +++--- mkspecs/hpux-acc-64/qplatformdefs.h | 26 +++--- mkspecs/hpux-acc-o64/qplatformdefs.h | 26 +++--- mkspecs/hpux-acc/qplatformdefs.h | 26 +++--- mkspecs/hpux-g++-64/qplatformdefs.h | 26 +++--- mkspecs/hpux-g++/qplatformdefs.h | 26 +++--- mkspecs/hpuxi-acc-32/qplatformdefs.h | 26 +++--- mkspecs/hpuxi-acc-64/qplatformdefs.h | 26 +++--- mkspecs/hpuxi-g++-64/qplatformdefs.h | 26 +++--- mkspecs/hurd-g++/qplatformdefs.h | 26 +++--- mkspecs/irix-cc-64/qplatformdefs.h | 26 +++--- mkspecs/irix-cc/qplatformdefs.h | 26 +++--- mkspecs/irix-g++-64/qplatformdefs.h | 26 +++--- mkspecs/irix-g++/qplatformdefs.h | 26 +++--- mkspecs/linux-cxx/qplatformdefs.h | 26 +++--- mkspecs/linux-ecc-64/qplatformdefs.h | 26 +++--- mkspecs/linux-g++-32/qplatformdefs.h | 26 +++--- mkspecs/linux-g++-64/qplatformdefs.h | 26 +++--- mkspecs/linux-g++/qplatformdefs.h | 26 +++--- mkspecs/linux-icc-32/qplatformdefs.h | 26 +++--- mkspecs/linux-icc-64/qplatformdefs.h | 26 +++--- mkspecs/linux-icc/qplatformdefs.h | 26 +++--- mkspecs/linux-kcc/qplatformdefs.h | 26 +++--- mkspecs/linux-llvm/qplatformdefs.h | 26 +++--- mkspecs/linux-lsb-g++/qplatformdefs.h | 26 +++--- mkspecs/linux-pgcc/qplatformdefs.h | 26 +++--- mkspecs/lynxos-g++/qplatformdefs.h | 26 +++--- mkspecs/macx-g++/qplatformdefs.h | 26 +++--- mkspecs/macx-g++42/qplatformdefs.h | 26 +++--- mkspecs/macx-icc/qplatformdefs.h | 26 +++--- mkspecs/macx-llvm/qplatformdefs.h | 26 +++--- mkspecs/macx-pbuilder/qplatformdefs.h | 26 +++--- mkspecs/macx-xcode/qplatformdefs.h | 26 +++--- mkspecs/macx-xlc/qplatformdefs.h | 26 +++--- mkspecs/netbsd-g++/qplatformdefs.h | 26 +++--- mkspecs/openbsd-g++/qplatformdefs.h | 26 +++--- mkspecs/qws/freebsd-generic-g++/qplatformdefs.h | 26 +++--- mkspecs/qws/linux-arm-g++/qplatformdefs.h | 26 +++--- mkspecs/qws/linux-armv6-g++/qplatformdefs.h | 26 +++--- mkspecs/qws/linux-avr32-g++/qplatformdefs.h | 26 +++--- mkspecs/qws/linux-cellon-g++/qplatformdefs.h | 26 +++--- mkspecs/qws/linux-dm7000-g++/qplatformdefs.h | 26 +++--- mkspecs/qws/linux-dm800-g++/qplatformdefs.h | 26 +++--- mkspecs/qws/linux-generic-g++-32/qplatformdefs.h | 26 +++--- mkspecs/qws/linux-generic-g++/qplatformdefs.h | 26 +++--- mkspecs/qws/linux-ipaq-g++/qplatformdefs.h | 26 +++--- mkspecs/qws/linux-lsb-g++/qplatformdefs.h | 26 +++--- mkspecs/qws/linux-mips-g++/qplatformdefs.h | 26 +++--- mkspecs/qws/linux-ppc-g++/qplatformdefs.h | 26 +++--- mkspecs/qws/linux-sh-g++/qplatformdefs.h | 26 +++--- mkspecs/qws/linux-sh4al-g++/qplatformdefs.h | 26 +++--- mkspecs/qws/linux-sharp-g++/qplatformdefs.h | 26 +++--- mkspecs/qws/linux-x86-g++/qplatformdefs.h | 26 +++--- mkspecs/qws/linux-x86_64-g++/qplatformdefs.h | 26 +++--- mkspecs/qws/linux-zylonite-g++/qplatformdefs.h | 26 +++--- mkspecs/qws/macx-generic-g++/qplatformdefs.h | 26 +++--- mkspecs/qws/solaris-generic-g++/qplatformdefs.h | 26 +++--- mkspecs/sco-cc/qplatformdefs.h | 26 +++--- mkspecs/sco-g++/qplatformdefs.h | 26 +++--- mkspecs/solaris-cc-64/qplatformdefs.h | 26 +++--- mkspecs/solaris-cc/qplatformdefs.h | 26 +++--- mkspecs/solaris-g++-64/qplatformdefs.h | 26 +++--- mkspecs/solaris-g++/qplatformdefs.h | 26 +++--- mkspecs/tru64-cxx/qplatformdefs.h | 26 +++--- mkspecs/tru64-g++/qplatformdefs.h | 26 +++--- mkspecs/unixware-cc/qplatformdefs.h | 26 +++--- mkspecs/unixware-g++/qplatformdefs.h | 26 +++--- mkspecs/win32-borland/qplatformdefs.h | 26 +++--- mkspecs/win32-g++/qplatformdefs.h | 26 +++--- mkspecs/win32-icc/qplatformdefs.h | 26 +++--- mkspecs/win32-msvc.net/qplatformdefs.h | 26 +++--- mkspecs/win32-msvc/qplatformdefs.h | 26 +++--- mkspecs/win32-msvc2002/qplatformdefs.h | 26 +++--- mkspecs/win32-msvc2003/qplatformdefs.h | 26 +++--- mkspecs/win32-msvc2005/qplatformdefs.h | 26 +++--- mkspecs/win32-msvc2008/qplatformdefs.h | 26 +++--- .../qplatformdefs.h | 26 +++--- .../qplatformdefs.h | 26 +++--- .../qplatformdefs.h | 26 +++--- .../qplatformdefs.h | 26 +++--- .../qplatformdefs.h | 26 +++--- .../qplatformdefs.h | 26 +++--- .../wince50standard-sh4-msvc2005/qplatformdefs.h | 26 +++--- .../wince50standard-sh4-msvc2008/qplatformdefs.h | 26 +++--- .../wince50standard-x86-msvc2005/qplatformdefs.h | 26 +++--- .../wince50standard-x86-msvc2008/qplatformdefs.h | 26 +++--- .../qplatformdefs.h | 26 +++--- mkspecs/wincewm50pocket-msvc2005/qplatformdefs.h | 26 +++--- mkspecs/wincewm50pocket-msvc2008/qplatformdefs.h | 26 +++--- mkspecs/wincewm50smart-msvc2005/qplatformdefs.h | 26 +++--- mkspecs/wincewm50smart-msvc2008/qplatformdefs.h | 26 +++--- .../wincewm60professional-msvc2005/qplatformdefs.h | 26 +++--- .../wincewm60professional-msvc2008/qplatformdefs.h | 26 +++--- mkspecs/wincewm60standard-msvc2005/qplatformdefs.h | 26 +++--- mkspecs/wincewm60standard-msvc2008/qplatformdefs.h | 26 +++--- qmake/cachekeys.h | 26 +++--- qmake/generators/mac/pbuilder_pbx.cpp | 26 +++--- qmake/generators/mac/pbuilder_pbx.h | 26 +++--- qmake/generators/makefile.cpp | 26 +++--- qmake/generators/makefile.h | 26 +++--- qmake/generators/makefiledeps.cpp | 26 +++--- qmake/generators/makefiledeps.h | 26 +++--- qmake/generators/metamakefile.cpp | 26 +++--- qmake/generators/metamakefile.h | 26 +++--- qmake/generators/projectgenerator.cpp | 26 +++--- qmake/generators/projectgenerator.h | 26 +++--- qmake/generators/unix/unixmake.cpp | 26 +++--- qmake/generators/unix/unixmake.h | 26 +++--- qmake/generators/unix/unixmake2.cpp | 26 +++--- qmake/generators/win32/borland_bmake.cpp | 26 +++--- qmake/generators/win32/borland_bmake.h | 26 +++--- qmake/generators/win32/mingw_make.cpp | 26 +++--- qmake/generators/win32/mingw_make.h | 26 +++--- qmake/generators/win32/msvc_dsp.cpp | 26 +++--- qmake/generators/win32/msvc_dsp.h | 26 +++--- qmake/generators/win32/msvc_nmake.cpp | 26 +++--- qmake/generators/win32/msvc_nmake.h | 26 +++--- qmake/generators/win32/msvc_objectmodel.cpp | 26 +++--- qmake/generators/win32/msvc_objectmodel.h | 26 +++--- qmake/generators/win32/msvc_vcproj.cpp | 26 +++--- qmake/generators/win32/msvc_vcproj.h | 26 +++--- qmake/generators/win32/winmakefile.cpp | 26 +++--- qmake/generators/win32/winmakefile.h | 26 +++--- qmake/generators/xmloutput.cpp | 26 +++--- qmake/generators/xmloutput.h | 26 +++--- qmake/main.cpp | 26 +++--- qmake/meta.cpp | 26 +++--- qmake/meta.h | 26 +++--- qmake/option.cpp | 26 +++--- qmake/option.h | 26 +++--- qmake/project.cpp | 26 +++--- qmake/project.h | 26 +++--- qmake/property.cpp | 26 +++--- qmake/property.h | 26 +++--- qmake/qmake_pch.h | 26 +++--- src/3rdparty/sha1/sha1.cpp | 26 +++--- src/corelib/arch/arm/qatomic_arm.cpp | 26 +++--- src/corelib/arch/generic/qatomic_generic_unix.cpp | 26 +++--- .../arch/generic/qatomic_generic_windows.cpp | 26 +++--- src/corelib/arch/parisc/qatomic_parisc.cpp | 26 +++--- src/corelib/arch/qatomic_alpha.h | 26 +++--- src/corelib/arch/qatomic_arch.h | 26 +++--- src/corelib/arch/qatomic_arm.h | 26 +++--- src/corelib/arch/qatomic_armv6.h | 26 +++--- src/corelib/arch/qatomic_avr32.h | 26 +++--- src/corelib/arch/qatomic_bfin.h | 26 +++--- src/corelib/arch/qatomic_bootstrap.h | 26 +++--- src/corelib/arch/qatomic_generic.h | 26 +++--- src/corelib/arch/qatomic_i386.h | 26 +++--- src/corelib/arch/qatomic_ia64.h | 26 +++--- src/corelib/arch/qatomic_macosx.h | 26 +++--- src/corelib/arch/qatomic_mips.h | 26 +++--- src/corelib/arch/qatomic_parisc.h | 26 +++--- src/corelib/arch/qatomic_powerpc.h | 26 +++--- src/corelib/arch/qatomic_s390.h | 26 +++--- src/corelib/arch/qatomic_sh.h | 26 +++--- src/corelib/arch/qatomic_sh4a.h | 26 +++--- src/corelib/arch/qatomic_sparc.h | 26 +++--- src/corelib/arch/qatomic_windows.h | 26 +++--- src/corelib/arch/qatomic_windowsce.h | 26 +++--- src/corelib/arch/qatomic_x86_64.h | 26 +++--- src/corelib/arch/sh/qatomic_sh.cpp | 26 +++--- src/corelib/arch/sparc/qatomic_sparc.cpp | 26 +++--- src/corelib/codecs/qfontlaocodec.cpp | 26 +++--- src/corelib/codecs/qfontlaocodec_p.h | 26 +++--- src/corelib/codecs/qiconvcodec.cpp | 26 +++--- src/corelib/codecs/qiconvcodec_p.h | 26 +++--- src/corelib/codecs/qisciicodec.cpp | 26 +++--- src/corelib/codecs/qisciicodec_p.h | 26 +++--- src/corelib/codecs/qlatincodec.cpp | 26 +++--- src/corelib/codecs/qlatincodec_p.h | 26 +++--- src/corelib/codecs/qsimplecodec.cpp | 26 +++--- src/corelib/codecs/qsimplecodec_p.h | 26 +++--- src/corelib/codecs/qtextcodec.cpp | 26 +++--- src/corelib/codecs/qtextcodec.h | 26 +++--- src/corelib/codecs/qtextcodec_p.h | 26 +++--- src/corelib/codecs/qtextcodecplugin.cpp | 26 +++--- src/corelib/codecs/qtextcodecplugin.h | 26 +++--- src/corelib/codecs/qtsciicodec.cpp | 26 +++--- src/corelib/codecs/qtsciicodec_p.h | 26 +++--- src/corelib/codecs/qutfcodec.cpp | 26 +++--- src/corelib/codecs/qutfcodec_p.h | 26 +++--- src/corelib/concurrent/qfuture.cpp | 26 +++--- src/corelib/concurrent/qfuture.h | 26 +++--- src/corelib/concurrent/qfutureinterface.cpp | 26 +++--- src/corelib/concurrent/qfutureinterface.h | 26 +++--- src/corelib/concurrent/qfutureinterface_p.h | 26 +++--- src/corelib/concurrent/qfuturesynchronizer.cpp | 26 +++--- src/corelib/concurrent/qfuturesynchronizer.h | 26 +++--- src/corelib/concurrent/qfuturewatcher.cpp | 26 +++--- src/corelib/concurrent/qfuturewatcher.h | 26 +++--- src/corelib/concurrent/qfuturewatcher_p.h | 26 +++--- src/corelib/concurrent/qrunnable.cpp | 26 +++--- src/corelib/concurrent/qrunnable.h | 26 +++--- src/corelib/concurrent/qtconcurrentcompilertest.h | 26 +++--- src/corelib/concurrent/qtconcurrentexception.cpp | 26 +++--- src/corelib/concurrent/qtconcurrentexception.h | 26 +++--- src/corelib/concurrent/qtconcurrentfilter.cpp | 26 +++--- src/corelib/concurrent/qtconcurrentfilter.h | 26 +++--- src/corelib/concurrent/qtconcurrentfilterkernel.h | 26 +++--- .../concurrent/qtconcurrentfunctionwrappers.h | 26 +++--- .../concurrent/qtconcurrentiteratekernel.cpp | 26 +++--- src/corelib/concurrent/qtconcurrentiteratekernel.h | 26 +++--- src/corelib/concurrent/qtconcurrentmap.cpp | 26 +++--- src/corelib/concurrent/qtconcurrentmap.h | 26 +++--- src/corelib/concurrent/qtconcurrentmapkernel.h | 26 +++--- src/corelib/concurrent/qtconcurrentmedian.h | 26 +++--- src/corelib/concurrent/qtconcurrentreducekernel.h | 26 +++--- src/corelib/concurrent/qtconcurrentresultstore.cpp | 26 +++--- src/corelib/concurrent/qtconcurrentresultstore.h | 26 +++--- src/corelib/concurrent/qtconcurrentrun.cpp | 26 +++--- src/corelib/concurrent/qtconcurrentrun.h | 26 +++--- src/corelib/concurrent/qtconcurrentrunbase.h | 26 +++--- .../concurrent/qtconcurrentstoredfunctioncall.h | 26 +++--- .../concurrent/qtconcurrentthreadengine.cpp | 26 +++--- src/corelib/concurrent/qtconcurrentthreadengine.h | 26 +++--- src/corelib/concurrent/qthreadpool.cpp | 26 +++--- src/corelib/concurrent/qthreadpool.h | 26 +++--- src/corelib/concurrent/qthreadpool_p.h | 26 +++--- src/corelib/global/qconfig-dist.h | 26 +++--- src/corelib/global/qconfig-large.h | 26 +++--- src/corelib/global/qconfig-medium.h | 26 +++--- src/corelib/global/qconfig-minimal.h | 26 +++--- src/corelib/global/qconfig-small.h | 26 +++--- src/corelib/global/qendian.h | 26 +++--- src/corelib/global/qfeatures.h | 26 +++--- src/corelib/global/qglobal.cpp | 26 +++--- src/corelib/global/qglobal.h | 26 +++--- src/corelib/global/qlibraryinfo.cpp | 26 +++--- src/corelib/global/qlibraryinfo.h | 26 +++--- src/corelib/global/qmalloc.cpp | 26 +++--- src/corelib/global/qnamespace.h | 26 +++--- src/corelib/global/qnumeric.cpp | 26 +++--- src/corelib/global/qnumeric.h | 26 +++--- src/corelib/global/qnumeric_p.h | 26 +++--- src/corelib/global/qt_pch.h | 26 +++--- src/corelib/global/qt_windows.h | 26 +++--- src/corelib/io/qabstractfileengine.cpp | 26 +++--- src/corelib/io/qabstractfileengine.h | 26 +++--- src/corelib/io/qabstractfileengine_p.h | 26 +++--- src/corelib/io/qbuffer.cpp | 26 +++--- src/corelib/io/qbuffer.h | 26 +++--- src/corelib/io/qdatastream.cpp | 26 +++--- src/corelib/io/qdatastream.h | 26 +++--- src/corelib/io/qdebug.cpp | 26 +++--- src/corelib/io/qdebug.h | 26 +++--- src/corelib/io/qdir.cpp | 26 +++--- src/corelib/io/qdir.h | 26 +++--- src/corelib/io/qdiriterator.cpp | 26 +++--- src/corelib/io/qdiriterator.h | 26 +++--- src/corelib/io/qfile.cpp | 26 +++--- src/corelib/io/qfile.h | 26 +++--- src/corelib/io/qfile_p.h | 26 +++--- src/corelib/io/qfileinfo.cpp | 26 +++--- src/corelib/io/qfileinfo.h | 26 +++--- src/corelib/io/qfileinfo_p.h | 26 +++--- src/corelib/io/qfilesystemwatcher.cpp | 26 +++--- src/corelib/io/qfilesystemwatcher.h | 26 +++--- src/corelib/io/qfilesystemwatcher_dnotify.cpp | 26 +++--- src/corelib/io/qfilesystemwatcher_dnotify_p.h | 26 +++--- src/corelib/io/qfilesystemwatcher_inotify.cpp | 26 +++--- src/corelib/io/qfilesystemwatcher_inotify_p.h | 26 +++--- src/corelib/io/qfilesystemwatcher_kqueue.cpp | 26 +++--- src/corelib/io/qfilesystemwatcher_kqueue_p.h | 26 +++--- src/corelib/io/qfilesystemwatcher_p.h | 26 +++--- src/corelib/io/qfilesystemwatcher_win.cpp | 26 +++--- src/corelib/io/qfilesystemwatcher_win_p.h | 26 +++--- src/corelib/io/qfsfileengine.cpp | 26 +++--- src/corelib/io/qfsfileengine.h | 26 +++--- src/corelib/io/qfsfileengine_iterator.cpp | 26 +++--- src/corelib/io/qfsfileengine_iterator_p.h | 26 +++--- src/corelib/io/qfsfileengine_iterator_unix.cpp | 26 +++--- src/corelib/io/qfsfileengine_iterator_win.cpp | 26 +++--- src/corelib/io/qfsfileengine_p.h | 26 +++--- src/corelib/io/qfsfileengine_unix.cpp | 26 +++--- src/corelib/io/qfsfileengine_win.cpp | 26 +++--- src/corelib/io/qiodevice.cpp | 26 +++--- src/corelib/io/qiodevice.h | 26 +++--- src/corelib/io/qiodevice_p.h | 26 +++--- src/corelib/io/qprocess.cpp | 26 +++--- src/corelib/io/qprocess.h | 26 +++--- src/corelib/io/qprocess_p.h | 26 +++--- src/corelib/io/qprocess_unix.cpp | 26 +++--- src/corelib/io/qprocess_win.cpp | 26 +++--- src/corelib/io/qresource.cpp | 26 +++--- src/corelib/io/qresource.h | 26 +++--- src/corelib/io/qresource_iterator.cpp | 26 +++--- src/corelib/io/qresource_iterator_p.h | 26 +++--- src/corelib/io/qresource_p.h | 26 +++--- src/corelib/io/qsettings.cpp | 26 +++--- src/corelib/io/qsettings.h | 26 +++--- src/corelib/io/qsettings_mac.cpp | 26 +++--- src/corelib/io/qsettings_p.h | 26 +++--- src/corelib/io/qsettings_win.cpp | 26 +++--- src/corelib/io/qtemporaryfile.cpp | 26 +++--- src/corelib/io/qtemporaryfile.h | 26 +++--- src/corelib/io/qtextstream.cpp | 26 +++--- src/corelib/io/qtextstream.h | 26 +++--- src/corelib/io/qurl.cpp | 26 +++--- src/corelib/io/qurl.h | 26 +++--- src/corelib/io/qwindowspipewriter.cpp | 26 +++--- src/corelib/io/qwindowspipewriter_p.h | 26 +++--- src/corelib/kernel/qabstracteventdispatcher.cpp | 26 +++--- src/corelib/kernel/qabstracteventdispatcher.h | 26 +++--- src/corelib/kernel/qabstracteventdispatcher_p.h | 26 +++--- src/corelib/kernel/qabstractitemmodel.cpp | 26 +++--- src/corelib/kernel/qabstractitemmodel.h | 26 +++--- src/corelib/kernel/qabstractitemmodel_p.h | 26 +++--- src/corelib/kernel/qbasictimer.cpp | 26 +++--- src/corelib/kernel/qbasictimer.h | 26 +++--- src/corelib/kernel/qcore_mac.cpp | 26 +++--- src/corelib/kernel/qcore_mac_p.h | 26 +++--- src/corelib/kernel/qcoreapplication.cpp | 26 +++--- src/corelib/kernel/qcoreapplication.h | 26 +++--- src/corelib/kernel/qcoreapplication_mac.cpp | 26 +++--- src/corelib/kernel/qcoreapplication_p.h | 26 +++--- src/corelib/kernel/qcoreapplication_win.cpp | 26 +++--- src/corelib/kernel/qcorecmdlineargs_p.h | 26 +++--- src/corelib/kernel/qcoreevent.cpp | 26 +++--- src/corelib/kernel/qcoreevent.h | 26 +++--- src/corelib/kernel/qcoreglobaldata.cpp | 26 +++--- src/corelib/kernel/qcoreglobaldata_p.h | 26 +++--- src/corelib/kernel/qcrashhandler.cpp | 26 +++--- src/corelib/kernel/qcrashhandler_p.h | 26 +++--- src/corelib/kernel/qeventdispatcher_glib.cpp | 26 +++--- src/corelib/kernel/qeventdispatcher_glib_p.h | 26 +++--- src/corelib/kernel/qeventdispatcher_unix.cpp | 26 +++--- src/corelib/kernel/qeventdispatcher_unix_p.h | 26 +++--- src/corelib/kernel/qeventdispatcher_win.cpp | 26 +++--- src/corelib/kernel/qeventdispatcher_win_p.h | 26 +++--- src/corelib/kernel/qeventloop.cpp | 26 +++--- src/corelib/kernel/qeventloop.h | 26 +++--- src/corelib/kernel/qfunctions_p.h | 26 +++--- src/corelib/kernel/qfunctions_wince.cpp | 26 +++--- src/corelib/kernel/qfunctions_wince.h | 26 +++--- src/corelib/kernel/qmath.h | 26 +++--- src/corelib/kernel/qmetaobject.cpp | 26 +++--- src/corelib/kernel/qmetaobject.h | 26 +++--- src/corelib/kernel/qmetaobject_p.h | 26 +++--- src/corelib/kernel/qmetatype.cpp | 26 +++--- src/corelib/kernel/qmetatype.h | 26 +++--- src/corelib/kernel/qmimedata.cpp | 26 +++--- src/corelib/kernel/qmimedata.h | 26 +++--- src/corelib/kernel/qobject.cpp | 26 +++--- src/corelib/kernel/qobject.h | 26 +++--- src/corelib/kernel/qobject_p.h | 26 +++--- src/corelib/kernel/qobjectcleanuphandler.cpp | 26 +++--- src/corelib/kernel/qobjectcleanuphandler.h | 26 +++--- src/corelib/kernel/qobjectdefs.h | 26 +++--- src/corelib/kernel/qpointer.cpp | 26 +++--- src/corelib/kernel/qpointer.h | 26 +++--- src/corelib/kernel/qsharedmemory.cpp | 26 +++--- src/corelib/kernel/qsharedmemory.h | 26 +++--- src/corelib/kernel/qsharedmemory_p.h | 26 +++--- src/corelib/kernel/qsharedmemory_unix.cpp | 26 +++--- src/corelib/kernel/qsharedmemory_win.cpp | 26 +++--- src/corelib/kernel/qsignalmapper.cpp | 26 +++--- src/corelib/kernel/qsignalmapper.h | 26 +++--- src/corelib/kernel/qsocketnotifier.cpp | 26 +++--- src/corelib/kernel/qsocketnotifier.h | 26 +++--- src/corelib/kernel/qsystemsemaphore.cpp | 26 +++--- src/corelib/kernel/qsystemsemaphore.h | 26 +++--- src/corelib/kernel/qsystemsemaphore_p.h | 26 +++--- src/corelib/kernel/qsystemsemaphore_unix.cpp | 26 +++--- src/corelib/kernel/qsystemsemaphore_win.cpp | 26 +++--- src/corelib/kernel/qtimer.cpp | 26 +++--- src/corelib/kernel/qtimer.h | 26 +++--- src/corelib/kernel/qtranslator.cpp | 26 +++--- src/corelib/kernel/qtranslator.h | 26 +++--- src/corelib/kernel/qtranslator_p.h | 26 +++--- src/corelib/kernel/qvariant.cpp | 26 +++--- src/corelib/kernel/qvariant.h | 26 +++--- src/corelib/kernel/qvariant_p.h | 26 +++--- src/corelib/kernel/qwineventnotifier_p.cpp | 26 +++--- src/corelib/kernel/qwineventnotifier_p.h | 26 +++--- src/corelib/plugin/qfactoryinterface.h | 26 +++--- src/corelib/plugin/qfactoryloader.cpp | 26 +++--- src/corelib/plugin/qfactoryloader_p.h | 26 +++--- src/corelib/plugin/qlibrary.cpp | 26 +++--- src/corelib/plugin/qlibrary.h | 26 +++--- src/corelib/plugin/qlibrary_p.h | 26 +++--- src/corelib/plugin/qlibrary_unix.cpp | 26 +++--- src/corelib/plugin/qlibrary_win.cpp | 26 +++--- src/corelib/plugin/qplugin.h | 26 +++--- src/corelib/plugin/qpluginloader.cpp | 26 +++--- src/corelib/plugin/qpluginloader.h | 26 +++--- src/corelib/plugin/quuid.cpp | 26 +++--- src/corelib/plugin/quuid.h | 26 +++--- src/corelib/thread/qatomic.cpp | 26 +++--- src/corelib/thread/qatomic.h | 26 +++--- src/corelib/thread/qbasicatomic.h | 26 +++--- src/corelib/thread/qmutex.cpp | 26 +++--- src/corelib/thread/qmutex.h | 26 +++--- src/corelib/thread/qmutex_p.h | 26 +++--- src/corelib/thread/qmutex_unix.cpp | 26 +++--- src/corelib/thread/qmutex_win.cpp | 26 +++--- src/corelib/thread/qmutexpool.cpp | 26 +++--- src/corelib/thread/qmutexpool_p.h | 26 +++--- src/corelib/thread/qorderedmutexlocker_p.h | 26 +++--- src/corelib/thread/qreadwritelock.cpp | 26 +++--- src/corelib/thread/qreadwritelock.h | 26 +++--- src/corelib/thread/qreadwritelock_p.h | 26 +++--- src/corelib/thread/qsemaphore.cpp | 26 +++--- src/corelib/thread/qsemaphore.h | 26 +++--- src/corelib/thread/qthread.cpp | 26 +++--- src/corelib/thread/qthread.h | 26 +++--- src/corelib/thread/qthread_p.h | 26 +++--- src/corelib/thread/qthread_unix.cpp | 26 +++--- src/corelib/thread/qthread_win.cpp | 26 +++--- src/corelib/thread/qthreadstorage.cpp | 26 +++--- src/corelib/thread/qthreadstorage.h | 26 +++--- src/corelib/thread/qwaitcondition.h | 26 +++--- src/corelib/thread/qwaitcondition_unix.cpp | 26 +++--- src/corelib/thread/qwaitcondition_win.cpp | 26 +++--- src/corelib/tools/qalgorithms.h | 26 +++--- src/corelib/tools/qbitarray.cpp | 26 +++--- src/corelib/tools/qbitarray.h | 26 +++--- src/corelib/tools/qbytearray.cpp | 26 +++--- src/corelib/tools/qbytearray.h | 26 +++--- src/corelib/tools/qbytearraymatcher.cpp | 26 +++--- src/corelib/tools/qbytearraymatcher.h | 26 +++--- src/corelib/tools/qcache.h | 26 +++--- src/corelib/tools/qchar.cpp | 26 +++--- src/corelib/tools/qchar.h | 26 +++--- src/corelib/tools/qcontainerfwd.h | 26 +++--- src/corelib/tools/qcryptographichash.cpp | 26 +++--- src/corelib/tools/qcryptographichash.h | 26 +++--- src/corelib/tools/qdatetime.cpp | 26 +++--- src/corelib/tools/qdatetime.h | 26 +++--- src/corelib/tools/qdatetime_p.h | 26 +++--- src/corelib/tools/qdumper.cpp | 26 +++--- src/corelib/tools/qharfbuzz.cpp | 26 +++--- src/corelib/tools/qharfbuzz_p.h | 26 +++--- src/corelib/tools/qhash.cpp | 26 +++--- src/corelib/tools/qhash.h | 26 +++--- src/corelib/tools/qiterator.h | 26 +++--- src/corelib/tools/qline.cpp | 26 +++--- src/corelib/tools/qline.h | 26 +++--- src/corelib/tools/qlinkedlist.cpp | 26 +++--- src/corelib/tools/qlinkedlist.h | 26 +++--- src/corelib/tools/qlist.h | 26 +++--- src/corelib/tools/qlistdata.cpp | 26 +++--- src/corelib/tools/qlocale.cpp | 26 +++--- src/corelib/tools/qlocale.h | 26 +++--- src/corelib/tools/qlocale_data_p.h | 26 +++--- src/corelib/tools/qlocale_p.h | 26 +++--- src/corelib/tools/qmap.cpp | 26 +++--- src/corelib/tools/qmap.h | 26 +++--- src/corelib/tools/qpair.h | 26 +++--- src/corelib/tools/qpodlist_p.h | 26 +++--- src/corelib/tools/qpoint.cpp | 26 +++--- src/corelib/tools/qpoint.h | 26 +++--- src/corelib/tools/qqueue.cpp | 26 +++--- src/corelib/tools/qqueue.h | 26 +++--- src/corelib/tools/qrect.cpp | 26 +++--- src/corelib/tools/qrect.h | 26 +++--- src/corelib/tools/qregexp.cpp | 26 +++--- src/corelib/tools/qregexp.h | 26 +++--- src/corelib/tools/qringbuffer_p.h | 26 +++--- src/corelib/tools/qset.h | 26 +++--- src/corelib/tools/qshareddata.cpp | 26 +++--- src/corelib/tools/qshareddata.h | 26 +++--- src/corelib/tools/qsharedpointer.cpp | 26 +++--- src/corelib/tools/qsharedpointer.h | 26 +++--- src/corelib/tools/qsharedpointer_impl.h | 26 +++--- src/corelib/tools/qsize.cpp | 26 +++--- src/corelib/tools/qsize.h | 26 +++--- src/corelib/tools/qstack.cpp | 26 +++--- src/corelib/tools/qstack.h | 26 +++--- src/corelib/tools/qstring.cpp | 26 +++--- src/corelib/tools/qstring.h | 26 +++--- src/corelib/tools/qstringlist.cpp | 26 +++--- src/corelib/tools/qstringlist.h | 26 +++--- src/corelib/tools/qstringmatcher.cpp | 26 +++--- src/corelib/tools/qstringmatcher.h | 26 +++--- src/corelib/tools/qtextboundaryfinder.cpp | 26 +++--- src/corelib/tools/qtextboundaryfinder.h | 26 +++--- src/corelib/tools/qtimeline.cpp | 26 +++--- src/corelib/tools/qtimeline.h | 26 +++--- src/corelib/tools/qtools_p.h | 26 +++--- src/corelib/tools/qunicodetables.cpp | 26 +++--- src/corelib/tools/qunicodetables_p.h | 26 +++--- src/corelib/tools/qvarlengtharray.h | 26 +++--- src/corelib/tools/qvector.cpp | 26 +++--- src/corelib/tools/qvector.h | 26 +++--- src/corelib/tools/qvsnprintf.cpp | 26 +++--- src/corelib/xml/qxmlstream.cpp | 26 +++--- src/corelib/xml/qxmlstream.g | 26 +++--- src/corelib/xml/qxmlstream.h | 26 +++--- src/corelib/xml/qxmlstream_p.h | 26 +++--- src/corelib/xml/qxmlutils.cpp | 26 +++--- src/corelib/xml/qxmlutils_p.h | 26 +++--- src/dbus/qdbus_symbols.cpp | 26 +++--- src/dbus/qdbus_symbols_p.h | 26 +++--- src/dbus/qdbusabstractadaptor.cpp | 26 +++--- src/dbus/qdbusabstractadaptor.h | 26 +++--- src/dbus/qdbusabstractadaptor_p.h | 26 +++--- src/dbus/qdbusabstractinterface.cpp | 26 +++--- src/dbus/qdbusabstractinterface.h | 26 +++--- src/dbus/qdbusabstractinterface_p.h | 26 +++--- src/dbus/qdbusargument.cpp | 26 +++--- src/dbus/qdbusargument.h | 26 +++--- src/dbus/qdbusargument_p.h | 26 +++--- src/dbus/qdbusconnection.cpp | 26 +++--- src/dbus/qdbusconnection.h | 26 +++--- src/dbus/qdbusconnection_p.h | 26 +++--- src/dbus/qdbusconnectioninterface.cpp | 26 +++--- src/dbus/qdbusconnectioninterface.h | 26 +++--- src/dbus/qdbuscontext.cpp | 26 +++--- src/dbus/qdbuscontext.h | 26 +++--- src/dbus/qdbuscontext_p.h | 26 +++--- src/dbus/qdbusdemarshaller.cpp | 26 +++--- src/dbus/qdbuserror.cpp | 26 +++--- src/dbus/qdbuserror.h | 26 +++--- src/dbus/qdbusextratypes.cpp | 26 +++--- src/dbus/qdbusextratypes.h | 26 +++--- src/dbus/qdbusintegrator.cpp | 26 +++--- src/dbus/qdbusintegrator_p.h | 26 +++--- src/dbus/qdbusinterface.cpp | 26 +++--- src/dbus/qdbusinterface.h | 26 +++--- src/dbus/qdbusinterface_p.h | 26 +++--- src/dbus/qdbusinternalfilters.cpp | 26 +++--- src/dbus/qdbusintrospection.cpp | 26 +++--- src/dbus/qdbusintrospection_p.h | 26 +++--- src/dbus/qdbusmacros.h | 26 +++--- src/dbus/qdbusmarshaller.cpp | 26 +++--- src/dbus/qdbusmessage.cpp | 26 +++--- src/dbus/qdbusmessage.h | 26 +++--- src/dbus/qdbusmessage_p.h | 26 +++--- src/dbus/qdbusmetaobject.cpp | 26 +++--- src/dbus/qdbusmetaobject_p.h | 26 +++--- src/dbus/qdbusmetatype.cpp | 26 +++--- src/dbus/qdbusmetatype.h | 26 +++--- src/dbus/qdbusmetatype_p.h | 26 +++--- src/dbus/qdbusmisc.cpp | 26 +++--- src/dbus/qdbuspendingcall.cpp | 26 +++--- src/dbus/qdbuspendingcall.h | 26 +++--- src/dbus/qdbuspendingcall_p.h | 26 +++--- src/dbus/qdbuspendingreply.cpp | 26 +++--- src/dbus/qdbuspendingreply.h | 26 +++--- src/dbus/qdbusreply.cpp | 26 +++--- src/dbus/qdbusreply.h | 26 +++--- src/dbus/qdbusserver.cpp | 26 +++--- src/dbus/qdbusserver.h | 26 +++--- src/dbus/qdbusthread.cpp | 26 +++--- src/dbus/qdbusthreaddebug_p.h | 26 +++--- src/dbus/qdbusutil.cpp | 26 +++--- src/dbus/qdbusutil_p.h | 26 +++--- src/dbus/qdbusxmlgenerator.cpp | 26 +++--- src/dbus/qdbusxmlparser.cpp | 26 +++--- src/dbus/qdbusxmlparser_p.h | 26 +++--- src/gui/accessible/qaccessible.cpp | 26 +++--- src/gui/accessible/qaccessible.h | 26 +++--- src/gui/accessible/qaccessible2.cpp | 26 +++--- src/gui/accessible/qaccessible2.h | 26 +++--- src/gui/accessible/qaccessible_mac.mm | 26 +++--- src/gui/accessible/qaccessible_mac_carbon.cpp | 26 +++--- src/gui/accessible/qaccessible_mac_p.h | 26 +++--- src/gui/accessible/qaccessible_unix.cpp | 26 +++--- src/gui/accessible/qaccessible_win.cpp | 26 +++--- src/gui/accessible/qaccessiblebridge.cpp | 26 +++--- src/gui/accessible/qaccessiblebridge.h | 26 +++--- src/gui/accessible/qaccessibleobject.cpp | 26 +++--- src/gui/accessible/qaccessibleobject.h | 26 +++--- src/gui/accessible/qaccessibleplugin.cpp | 26 +++--- src/gui/accessible/qaccessibleplugin.h | 26 +++--- src/gui/accessible/qaccessiblewidget.cpp | 26 +++--- src/gui/accessible/qaccessiblewidget.h | 26 +++--- src/gui/dialogs/qabstractpagesetupdialog.cpp | 26 +++--- src/gui/dialogs/qabstractpagesetupdialog.h | 26 +++--- src/gui/dialogs/qabstractpagesetupdialog_p.h | 26 +++--- src/gui/dialogs/qabstractprintdialog.cpp | 26 +++--- src/gui/dialogs/qabstractprintdialog.h | 26 +++--- src/gui/dialogs/qabstractprintdialog_p.h | 26 +++--- src/gui/dialogs/qcolordialog.cpp | 26 +++--- src/gui/dialogs/qcolordialog.h | 26 +++--- src/gui/dialogs/qcolordialog_mac.mm | 26 +++--- src/gui/dialogs/qcolordialog_p.h | 26 +++--- src/gui/dialogs/qdialog.cpp | 26 +++--- src/gui/dialogs/qdialog.h | 26 +++--- src/gui/dialogs/qdialog_p.h | 26 +++--- src/gui/dialogs/qdialogsbinarycompat_win.cpp | 26 +++--- src/gui/dialogs/qerrormessage.cpp | 26 +++--- src/gui/dialogs/qerrormessage.h | 26 +++--- src/gui/dialogs/qfiledialog.cpp | 26 +++--- src/gui/dialogs/qfiledialog.h | 26 +++--- src/gui/dialogs/qfiledialog.ui | 26 +++--- src/gui/dialogs/qfiledialog_mac.mm | 26 +++--- src/gui/dialogs/qfiledialog_p.h | 26 +++--- src/gui/dialogs/qfiledialog_win.cpp | 26 +++--- src/gui/dialogs/qfiledialog_wince.ui | 26 +++--- src/gui/dialogs/qfileinfogatherer.cpp | 26 +++--- src/gui/dialogs/qfileinfogatherer_p.h | 26 +++--- src/gui/dialogs/qfilesystemmodel.cpp | 26 +++--- src/gui/dialogs/qfilesystemmodel.h | 26 +++--- src/gui/dialogs/qfilesystemmodel_p.h | 26 +++--- src/gui/dialogs/qfontdialog.cpp | 26 +++--- src/gui/dialogs/qfontdialog.h | 26 +++--- src/gui/dialogs/qfontdialog_mac.mm | 26 +++--- src/gui/dialogs/qfontdialog_p.h | 26 +++--- src/gui/dialogs/qinputdialog.cpp | 26 +++--- src/gui/dialogs/qinputdialog.h | 26 +++--- src/gui/dialogs/qmessagebox.cpp | 26 +++--- src/gui/dialogs/qmessagebox.h | 26 +++--- src/gui/dialogs/qnspanelproxy_mac.mm | 26 +++--- src/gui/dialogs/qpagesetupdialog.cpp | 26 +++--- src/gui/dialogs/qpagesetupdialog.h | 26 +++--- src/gui/dialogs/qpagesetupdialog_mac.mm | 26 +++--- src/gui/dialogs/qpagesetupdialog_unix.cpp | 26 +++--- src/gui/dialogs/qpagesetupdialog_unix_p.h | 26 +++--- src/gui/dialogs/qpagesetupdialog_win.cpp | 26 +++--- src/gui/dialogs/qprintdialog.h | 26 +++--- src/gui/dialogs/qprintdialog_mac.mm | 26 +++--- src/gui/dialogs/qprintdialog_qws.cpp | 26 +++--- src/gui/dialogs/qprintdialog_unix.cpp | 26 +++--- src/gui/dialogs/qprintdialog_win.cpp | 26 +++--- src/gui/dialogs/qprintpreviewdialog.cpp | 26 +++--- src/gui/dialogs/qprintpreviewdialog.h | 26 +++--- src/gui/dialogs/qprogressdialog.cpp | 26 +++--- src/gui/dialogs/qprogressdialog.h | 26 +++--- src/gui/dialogs/qsidebar.cpp | 26 +++--- src/gui/dialogs/qsidebar_p.h | 26 +++--- src/gui/dialogs/qwizard.cpp | 26 +++--- src/gui/dialogs/qwizard.h | 26 +++--- src/gui/dialogs/qwizard_win.cpp | 26 +++--- src/gui/dialogs/qwizard_win_p.h | 26 +++--- src/gui/embedded/qcopchannel_qws.cpp | 26 +++--- src/gui/embedded/qcopchannel_qws.h | 26 +++--- src/gui/embedded/qdecoration_qws.cpp | 26 +++--- src/gui/embedded/qdecoration_qws.h | 26 +++--- src/gui/embedded/qdecorationdefault_qws.cpp | 26 +++--- src/gui/embedded/qdecorationdefault_qws.h | 26 +++--- src/gui/embedded/qdecorationfactory_qws.cpp | 26 +++--- src/gui/embedded/qdecorationfactory_qws.h | 26 +++--- src/gui/embedded/qdecorationplugin_qws.cpp | 26 +++--- src/gui/embedded/qdecorationplugin_qws.h | 26 +++--- src/gui/embedded/qdecorationstyled_qws.cpp | 26 +++--- src/gui/embedded/qdecorationstyled_qws.h | 26 +++--- src/gui/embedded/qdecorationwindows_qws.cpp | 26 +++--- src/gui/embedded/qdecorationwindows_qws.h | 26 +++--- src/gui/embedded/qdirectpainter_qws.cpp | 26 +++--- src/gui/embedded/qdirectpainter_qws.h | 26 +++--- src/gui/embedded/qkbd_qws.cpp | 26 +++--- src/gui/embedded/qkbd_qws.h | 26 +++--- src/gui/embedded/qkbddriverfactory_qws.cpp | 26 +++--- src/gui/embedded/qkbddriverfactory_qws.h | 26 +++--- src/gui/embedded/qkbddriverplugin_qws.cpp | 26 +++--- src/gui/embedded/qkbddriverplugin_qws.h | 26 +++--- src/gui/embedded/qkbdpc101_qws.cpp | 26 +++--- src/gui/embedded/qkbdpc101_qws.h | 26 +++--- src/gui/embedded/qkbdsl5000_qws.cpp | 26 +++--- src/gui/embedded/qkbdsl5000_qws.h | 26 +++--- src/gui/embedded/qkbdtty_qws.cpp | 26 +++--- src/gui/embedded/qkbdtty_qws.h | 26 +++--- src/gui/embedded/qkbdum_qws.cpp | 26 +++--- src/gui/embedded/qkbdum_qws.h | 26 +++--- src/gui/embedded/qkbdusb_qws.cpp | 26 +++--- src/gui/embedded/qkbdusb_qws.h | 26 +++--- src/gui/embedded/qkbdvfb_qws.cpp | 26 +++--- src/gui/embedded/qkbdvfb_qws.h | 26 +++--- src/gui/embedded/qkbdvr41xx_qws.cpp | 26 +++--- src/gui/embedded/qkbdvr41xx_qws.h | 26 +++--- src/gui/embedded/qkbdyopy_qws.cpp | 26 +++--- src/gui/embedded/qkbdyopy_qws.h | 26 +++--- src/gui/embedded/qlock.cpp | 26 +++--- src/gui/embedded/qlock_p.h | 26 +++--- src/gui/embedded/qmouse_qws.cpp | 26 +++--- src/gui/embedded/qmouse_qws.h | 26 +++--- src/gui/embedded/qmousebus_qws.cpp | 26 +++--- src/gui/embedded/qmousebus_qws.h | 26 +++--- src/gui/embedded/qmousedriverfactory_qws.cpp | 26 +++--- src/gui/embedded/qmousedriverfactory_qws.h | 26 +++--- src/gui/embedded/qmousedriverplugin_qws.cpp | 26 +++--- src/gui/embedded/qmousedriverplugin_qws.h | 26 +++--- src/gui/embedded/qmouselinuxtp_qws.cpp | 26 +++--- src/gui/embedded/qmouselinuxtp_qws.h | 26 +++--- src/gui/embedded/qmousepc_qws.cpp | 26 +++--- src/gui/embedded/qmousepc_qws.h | 26 +++--- src/gui/embedded/qmousetslib_qws.cpp | 26 +++--- src/gui/embedded/qmousetslib_qws.h | 26 +++--- src/gui/embedded/qmousevfb_qws.cpp | 26 +++--- src/gui/embedded/qmousevfb_qws.h | 26 +++--- src/gui/embedded/qmousevr41xx_qws.cpp | 26 +++--- src/gui/embedded/qmousevr41xx_qws.h | 26 +++--- src/gui/embedded/qmouseyopy_qws.cpp | 26 +++--- src/gui/embedded/qmouseyopy_qws.h | 26 +++--- src/gui/embedded/qscreen_qws.cpp | 26 +++--- src/gui/embedded/qscreen_qws.h | 26 +++--- src/gui/embedded/qscreendriverfactory_qws.cpp | 26 +++--- src/gui/embedded/qscreendriverfactory_qws.h | 26 +++--- src/gui/embedded/qscreendriverplugin_qws.cpp | 26 +++--- src/gui/embedded/qscreendriverplugin_qws.h | 26 +++--- src/gui/embedded/qscreenlinuxfb_qws.cpp | 26 +++--- src/gui/embedded/qscreenlinuxfb_qws.h | 26 +++--- src/gui/embedded/qscreenmulti_qws.cpp | 26 +++--- src/gui/embedded/qscreenmulti_qws_p.h | 26 +++--- src/gui/embedded/qscreenproxy_qws.cpp | 26 +++--- src/gui/embedded/qscreenproxy_qws.h | 26 +++--- src/gui/embedded/qscreentransformed_qws.cpp | 26 +++--- src/gui/embedded/qscreentransformed_qws.h | 26 +++--- src/gui/embedded/qscreenvfb_qws.cpp | 26 +++--- src/gui/embedded/qscreenvfb_qws.h | 26 +++--- src/gui/embedded/qsoundqss_qws.cpp | 26 +++--- src/gui/embedded/qsoundqss_qws.h | 26 +++--- src/gui/embedded/qtransportauth_qws.cpp | 26 +++--- src/gui/embedded/qtransportauth_qws.h | 26 +++--- src/gui/embedded/qtransportauth_qws_p.h | 26 +++--- src/gui/embedded/qtransportauthdefs_qws.h | 26 +++--- src/gui/embedded/qunixsocket.cpp | 26 +++--- src/gui/embedded/qunixsocket_p.h | 26 +++--- src/gui/embedded/qunixsocketserver.cpp | 26 +++--- src/gui/embedded/qunixsocketserver_p.h | 26 +++--- src/gui/embedded/qvfbhdr.h | 26 +++--- src/gui/embedded/qwindowsystem_p.h | 26 +++--- src/gui/embedded/qwindowsystem_qws.cpp | 26 +++--- src/gui/embedded/qwindowsystem_qws.h | 26 +++--- src/gui/embedded/qwscommand_qws.cpp | 26 +++--- src/gui/embedded/qwscommand_qws_p.h | 26 +++--- src/gui/embedded/qwscursor_qws.cpp | 26 +++--- src/gui/embedded/qwscursor_qws.h | 26 +++--- src/gui/embedded/qwsdisplay_qws.h | 26 +++--- src/gui/embedded/qwsdisplay_qws_p.h | 26 +++--- src/gui/embedded/qwsembedwidget.cpp | 26 +++--- src/gui/embedded/qwsembedwidget.h | 26 +++--- src/gui/embedded/qwsevent_qws.cpp | 26 +++--- src/gui/embedded/qwsevent_qws.h | 26 +++--- src/gui/embedded/qwslock.cpp | 26 +++--- src/gui/embedded/qwslock_p.h | 26 +++--- src/gui/embedded/qwsmanager_p.h | 26 +++--- src/gui/embedded/qwsmanager_qws.cpp | 26 +++--- src/gui/embedded/qwsmanager_qws.h | 26 +++--- src/gui/embedded/qwsproperty_qws.cpp | 26 +++--- src/gui/embedded/qwsproperty_qws.h | 26 +++--- src/gui/embedded/qwsprotocolitem_qws.h | 26 +++--- src/gui/embedded/qwssharedmemory.cpp | 26 +++--- src/gui/embedded/qwssharedmemory_p.h | 26 +++--- src/gui/embedded/qwssignalhandler.cpp | 26 +++--- src/gui/embedded/qwssignalhandler_p.h | 26 +++--- src/gui/embedded/qwssocket_qws.cpp | 26 +++--- src/gui/embedded/qwssocket_qws.h | 26 +++--- src/gui/embedded/qwsutils_qws.h | 26 +++--- src/gui/graphicsview/qgraphicsgridlayout.cpp | 26 +++--- src/gui/graphicsview/qgraphicsgridlayout.h | 26 +++--- src/gui/graphicsview/qgraphicsitem.cpp | 26 +++--- src/gui/graphicsview/qgraphicsitem.h | 26 +++--- src/gui/graphicsview/qgraphicsitem_p.h | 26 +++--- src/gui/graphicsview/qgraphicsitemanimation.cpp | 26 +++--- src/gui/graphicsview/qgraphicsitemanimation.h | 26 +++--- src/gui/graphicsview/qgraphicslayout.cpp | 26 +++--- src/gui/graphicsview/qgraphicslayout.h | 26 +++--- src/gui/graphicsview/qgraphicslayout_p.cpp | 26 +++--- src/gui/graphicsview/qgraphicslayout_p.h | 26 +++--- src/gui/graphicsview/qgraphicslayoutitem.cpp | 26 +++--- src/gui/graphicsview/qgraphicslayoutitem.h | 26 +++--- src/gui/graphicsview/qgraphicslayoutitem_p.h | 26 +++--- src/gui/graphicsview/qgraphicslinearlayout.cpp | 26 +++--- src/gui/graphicsview/qgraphicslinearlayout.h | 26 +++--- src/gui/graphicsview/qgraphicsproxywidget.cpp | 26 +++--- src/gui/graphicsview/qgraphicsproxywidget.h | 26 +++--- src/gui/graphicsview/qgraphicsproxywidget_p.h | 26 +++--- src/gui/graphicsview/qgraphicsscene.cpp | 26 +++--- src/gui/graphicsview/qgraphicsscene.h | 26 +++--- src/gui/graphicsview/qgraphicsscene_bsp.cpp | 26 +++--- src/gui/graphicsview/qgraphicsscene_bsp_p.h | 26 +++--- src/gui/graphicsview/qgraphicsscene_p.h | 26 +++--- src/gui/graphicsview/qgraphicssceneevent.cpp | 26 +++--- src/gui/graphicsview/qgraphicssceneevent.h | 26 +++--- src/gui/graphicsview/qgraphicsview.cpp | 26 +++--- src/gui/graphicsview/qgraphicsview.h | 26 +++--- src/gui/graphicsview/qgraphicsview_p.h | 26 +++--- src/gui/graphicsview/qgraphicswidget.cpp | 26 +++--- src/gui/graphicsview/qgraphicswidget.h | 26 +++--- src/gui/graphicsview/qgraphicswidget_p.cpp | 26 +++--- src/gui/graphicsview/qgraphicswidget_p.h | 26 +++--- src/gui/graphicsview/qgridlayoutengine.cpp | 26 +++--- src/gui/graphicsview/qgridlayoutengine_p.h | 26 +++--- src/gui/image/qbitmap.cpp | 26 +++--- src/gui/image/qbitmap.h | 26 +++--- src/gui/image/qbmphandler.cpp | 26 +++--- src/gui/image/qbmphandler_p.h | 26 +++--- src/gui/image/qicon.cpp | 26 +++--- src/gui/image/qicon.h | 26 +++--- src/gui/image/qiconengine.cpp | 26 +++--- src/gui/image/qiconengine.h | 26 +++--- src/gui/image/qiconengineplugin.cpp | 26 +++--- src/gui/image/qiconengineplugin.h | 26 +++--- src/gui/image/qimage.cpp | 26 +++--- src/gui/image/qimage.h | 26 +++--- src/gui/image/qimage_p.h | 26 +++--- src/gui/image/qimageiohandler.cpp | 26 +++--- src/gui/image/qimageiohandler.h | 26 +++--- src/gui/image/qimagereader.cpp | 26 +++--- src/gui/image/qimagereader.h | 26 +++--- src/gui/image/qimagewriter.cpp | 26 +++--- src/gui/image/qimagewriter.h | 26 +++--- src/gui/image/qmovie.cpp | 26 +++--- src/gui/image/qmovie.h | 26 +++--- src/gui/image/qnativeimage.cpp | 26 +++--- src/gui/image/qnativeimage_p.h | 26 +++--- src/gui/image/qpaintengine_pic.cpp | 26 +++--- src/gui/image/qpaintengine_pic_p.h | 26 +++--- src/gui/image/qpicture.cpp | 26 +++--- src/gui/image/qpicture.h | 26 +++--- src/gui/image/qpicture_p.h | 26 +++--- src/gui/image/qpictureformatplugin.cpp | 26 +++--- src/gui/image/qpictureformatplugin.h | 26 +++--- src/gui/image/qpixmap.cpp | 26 +++--- src/gui/image/qpixmap.h | 26 +++--- src/gui/image/qpixmap_mac.cpp | 26 +++--- src/gui/image/qpixmap_mac_p.h | 26 +++--- src/gui/image/qpixmap_qws.cpp | 26 +++--- src/gui/image/qpixmap_raster.cpp | 26 +++--- src/gui/image/qpixmap_raster_p.h | 26 +++--- src/gui/image/qpixmap_win.cpp | 26 +++--- src/gui/image/qpixmap_x11.cpp | 26 +++--- src/gui/image/qpixmap_x11_p.h | 26 +++--- src/gui/image/qpixmapcache.cpp | 26 +++--- src/gui/image/qpixmapcache.h | 26 +++--- src/gui/image/qpixmapdata.cpp | 26 +++--- src/gui/image/qpixmapdata_p.h | 26 +++--- src/gui/image/qpixmapdatafactory.cpp | 26 +++--- src/gui/image/qpixmapdatafactory_p.h | 26 +++--- src/gui/image/qpixmapfilter.cpp | 26 +++--- src/gui/image/qpixmapfilter_p.h | 26 +++--- src/gui/image/qpnghandler.cpp | 26 +++--- src/gui/image/qpnghandler_p.h | 26 +++--- src/gui/image/qppmhandler.cpp | 26 +++--- src/gui/image/qppmhandler_p.h | 26 +++--- src/gui/image/qxbmhandler.cpp | 26 +++--- src/gui/image/qxbmhandler_p.h | 26 +++--- src/gui/image/qxpmhandler.cpp | 26 +++--- src/gui/image/qxpmhandler_p.h | 26 +++--- src/gui/inputmethod/qinputcontext.cpp | 26 +++--- src/gui/inputmethod/qinputcontext.h | 26 +++--- src/gui/inputmethod/qinputcontext_p.h | 26 +++--- src/gui/inputmethod/qinputcontextfactory.cpp | 26 +++--- src/gui/inputmethod/qinputcontextfactory.h | 26 +++--- src/gui/inputmethod/qinputcontextplugin.cpp | 26 +++--- src/gui/inputmethod/qinputcontextplugin.h | 26 +++--- src/gui/inputmethod/qmacinputcontext_mac.cpp | 26 +++--- src/gui/inputmethod/qmacinputcontext_p.h | 26 +++--- src/gui/inputmethod/qwininputcontext_p.h | 26 +++--- src/gui/inputmethod/qwininputcontext_win.cpp | 26 +++--- src/gui/inputmethod/qwsinputcontext_p.h | 26 +++--- src/gui/inputmethod/qwsinputcontext_qws.cpp | 26 +++--- src/gui/inputmethod/qximinputcontext_p.h | 26 +++--- src/gui/inputmethod/qximinputcontext_x11.cpp | 26 +++--- src/gui/itemviews/qabstractitemdelegate.cpp | 26 +++--- src/gui/itemviews/qabstractitemdelegate.h | 26 +++--- src/gui/itemviews/qabstractitemview.cpp | 26 +++--- src/gui/itemviews/qabstractitemview.h | 26 +++--- src/gui/itemviews/qabstractitemview_p.h | 26 +++--- src/gui/itemviews/qabstractproxymodel.cpp | 26 +++--- src/gui/itemviews/qabstractproxymodel.h | 26 +++--- src/gui/itemviews/qabstractproxymodel_p.h | 26 +++--- src/gui/itemviews/qbsptree.cpp | 26 +++--- src/gui/itemviews/qbsptree_p.h | 26 +++--- src/gui/itemviews/qcolumnview.cpp | 26 +++--- src/gui/itemviews/qcolumnview.h | 26 +++--- src/gui/itemviews/qcolumnview_p.h | 26 +++--- src/gui/itemviews/qcolumnviewgrip.cpp | 26 +++--- src/gui/itemviews/qcolumnviewgrip_p.h | 26 +++--- src/gui/itemviews/qdatawidgetmapper.cpp | 26 +++--- src/gui/itemviews/qdatawidgetmapper.h | 26 +++--- src/gui/itemviews/qdirmodel.cpp | 26 +++--- src/gui/itemviews/qdirmodel.h | 26 +++--- src/gui/itemviews/qfileiconprovider.cpp | 26 +++--- src/gui/itemviews/qfileiconprovider.h | 26 +++--- src/gui/itemviews/qheaderview.cpp | 26 +++--- src/gui/itemviews/qheaderview.h | 26 +++--- src/gui/itemviews/qheaderview_p.h | 26 +++--- src/gui/itemviews/qitemdelegate.cpp | 26 +++--- src/gui/itemviews/qitemdelegate.h | 26 +++--- src/gui/itemviews/qitemeditorfactory.cpp | 26 +++--- src/gui/itemviews/qitemeditorfactory.h | 26 +++--- src/gui/itemviews/qitemeditorfactory_p.h | 26 +++--- src/gui/itemviews/qitemselectionmodel.cpp | 26 +++--- src/gui/itemviews/qitemselectionmodel.h | 26 +++--- src/gui/itemviews/qitemselectionmodel_p.h | 26 +++--- src/gui/itemviews/qlistview.cpp | 26 +++--- src/gui/itemviews/qlistview.h | 26 +++--- src/gui/itemviews/qlistview_p.h | 26 +++--- src/gui/itemviews/qlistwidget.cpp | 26 +++--- src/gui/itemviews/qlistwidget.h | 26 +++--- src/gui/itemviews/qlistwidget_p.h | 26 +++--- src/gui/itemviews/qproxymodel.cpp | 26 +++--- src/gui/itemviews/qproxymodel.h | 26 +++--- src/gui/itemviews/qproxymodel_p.h | 26 +++--- src/gui/itemviews/qsortfilterproxymodel.cpp | 26 +++--- src/gui/itemviews/qsortfilterproxymodel.h | 26 +++--- src/gui/itemviews/qstandarditemmodel.cpp | 26 +++--- src/gui/itemviews/qstandarditemmodel.h | 26 +++--- src/gui/itemviews/qstandarditemmodel_p.h | 26 +++--- src/gui/itemviews/qstringlistmodel.cpp | 26 +++--- src/gui/itemviews/qstringlistmodel.h | 26 +++--- src/gui/itemviews/qstyleditemdelegate.cpp | 26 +++--- src/gui/itemviews/qstyleditemdelegate.h | 26 +++--- src/gui/itemviews/qtableview.cpp | 26 +++--- src/gui/itemviews/qtableview.h | 26 +++--- src/gui/itemviews/qtableview_p.h | 26 +++--- src/gui/itemviews/qtablewidget.cpp | 26 +++--- src/gui/itemviews/qtablewidget.h | 26 +++--- src/gui/itemviews/qtablewidget_p.h | 26 +++--- src/gui/itemviews/qtreeview.cpp | 26 +++--- src/gui/itemviews/qtreeview.h | 26 +++--- src/gui/itemviews/qtreeview_p.h | 26 +++--- src/gui/itemviews/qtreewidget.cpp | 26 +++--- src/gui/itemviews/qtreewidget.h | 26 +++--- src/gui/itemviews/qtreewidget_p.h | 26 +++--- src/gui/itemviews/qtreewidgetitemiterator.cpp | 26 +++--- src/gui/itemviews/qtreewidgetitemiterator.h | 26 +++--- src/gui/itemviews/qtreewidgetitemiterator_p.h | 26 +++--- src/gui/itemviews/qwidgetitemdata_p.h | 26 +++--- src/gui/kernel/qaction.cpp | 26 +++--- src/gui/kernel/qaction.h | 26 +++--- src/gui/kernel/qaction_p.h | 26 +++--- src/gui/kernel/qactiongroup.cpp | 26 +++--- src/gui/kernel/qactiongroup.h | 26 +++--- src/gui/kernel/qapplication.cpp | 26 +++--- src/gui/kernel/qapplication.h | 26 +++--- src/gui/kernel/qapplication_mac.mm | 26 +++--- src/gui/kernel/qapplication_p.h | 26 +++--- src/gui/kernel/qapplication_qws.cpp | 26 +++--- src/gui/kernel/qapplication_win.cpp | 26 +++--- src/gui/kernel/qapplication_x11.cpp | 26 +++--- src/gui/kernel/qboxlayout.cpp | 26 +++--- src/gui/kernel/qboxlayout.h | 26 +++--- src/gui/kernel/qclipboard.cpp | 26 +++--- src/gui/kernel/qclipboard.h | 26 +++--- src/gui/kernel/qclipboard_mac.cpp | 26 +++--- src/gui/kernel/qclipboard_p.h | 26 +++--- src/gui/kernel/qclipboard_qws.cpp | 26 +++--- src/gui/kernel/qclipboard_win.cpp | 26 +++--- src/gui/kernel/qclipboard_x11.cpp | 26 +++--- src/gui/kernel/qcocoaapplication_mac.mm | 26 +++--- src/gui/kernel/qcocoaapplication_mac_p.h | 26 +++--- src/gui/kernel/qcocoaapplicationdelegate_mac.mm | 26 +++--- src/gui/kernel/qcocoaapplicationdelegate_mac_p.h | 26 +++--- src/gui/kernel/qcocoamenuloader_mac.mm | 26 +++--- src/gui/kernel/qcocoamenuloader_mac_p.h | 26 +++--- src/gui/kernel/qcocoapanel_mac.mm | 26 +++--- src/gui/kernel/qcocoapanel_mac_p.h | 26 +++--- src/gui/kernel/qcocoaview_mac.mm | 26 +++--- src/gui/kernel/qcocoaview_mac_p.h | 26 +++--- src/gui/kernel/qcocoawindow_mac.mm | 26 +++--- src/gui/kernel/qcocoawindow_mac_p.h | 26 +++--- src/gui/kernel/qcocoawindowcustomthemeframe_mac.mm | 26 +++--- .../kernel/qcocoawindowcustomthemeframe_mac_p.h | 26 +++--- src/gui/kernel/qcocoawindowdelegate_mac.mm | 26 +++--- src/gui/kernel/qcocoawindowdelegate_mac_p.h | 26 +++--- src/gui/kernel/qcursor.cpp | 26 +++--- src/gui/kernel/qcursor.h | 26 +++--- src/gui/kernel/qcursor_mac.mm | 26 +++--- src/gui/kernel/qcursor_p.h | 26 +++--- src/gui/kernel/qcursor_qws.cpp | 26 +++--- src/gui/kernel/qcursor_win.cpp | 26 +++--- src/gui/kernel/qcursor_x11.cpp | 26 +++--- src/gui/kernel/qdesktopwidget.h | 26 +++--- src/gui/kernel/qdesktopwidget_mac.mm | 26 +++--- src/gui/kernel/qdesktopwidget_mac_p.h | 26 +++--- src/gui/kernel/qdesktopwidget_qws.cpp | 26 +++--- src/gui/kernel/qdesktopwidget_win.cpp | 26 +++--- src/gui/kernel/qdesktopwidget_x11.cpp | 26 +++--- src/gui/kernel/qdnd.cpp | 26 +++--- src/gui/kernel/qdnd_mac.mm | 26 +++--- src/gui/kernel/qdnd_p.h | 26 +++--- src/gui/kernel/qdnd_qws.cpp | 26 +++--- src/gui/kernel/qdnd_win.cpp | 26 +++--- src/gui/kernel/qdnd_x11.cpp | 26 +++--- src/gui/kernel/qdrag.cpp | 26 +++--- src/gui/kernel/qdrag.h | 26 +++--- src/gui/kernel/qevent.cpp | 26 +++--- src/gui/kernel/qevent.h | 26 +++--- src/gui/kernel/qevent_p.h | 26 +++--- src/gui/kernel/qeventdispatcher_glib_qws.cpp | 26 +++--- src/gui/kernel/qeventdispatcher_glib_qws_p.h | 26 +++--- src/gui/kernel/qeventdispatcher_mac.mm | 26 +++--- src/gui/kernel/qeventdispatcher_mac_p.h | 26 +++--- src/gui/kernel/qeventdispatcher_qws.cpp | 26 +++--- src/gui/kernel/qeventdispatcher_qws_p.h | 26 +++--- src/gui/kernel/qeventdispatcher_x11.cpp | 26 +++--- src/gui/kernel/qeventdispatcher_x11_p.h | 26 +++--- src/gui/kernel/qformlayout.cpp | 26 +++--- src/gui/kernel/qformlayout.h | 26 +++--- src/gui/kernel/qgridlayout.cpp | 26 +++--- src/gui/kernel/qgridlayout.h | 26 +++--- src/gui/kernel/qguieventdispatcher_glib.cpp | 26 +++--- src/gui/kernel/qguieventdispatcher_glib_p.h | 26 +++--- src/gui/kernel/qguifunctions_wince.cpp | 26 +++--- src/gui/kernel/qguifunctions_wince.h | 26 +++--- src/gui/kernel/qguivariant.cpp | 26 +++--- src/gui/kernel/qkeymapper.cpp | 26 +++--- src/gui/kernel/qkeymapper_mac.cpp | 26 +++--- src/gui/kernel/qkeymapper_p.h | 26 +++--- src/gui/kernel/qkeymapper_qws.cpp | 26 +++--- src/gui/kernel/qkeymapper_win.cpp | 26 +++--- src/gui/kernel/qkeymapper_x11.cpp | 26 +++--- src/gui/kernel/qkeymapper_x11_p.cpp | 26 +++--- src/gui/kernel/qkeysequence.cpp | 26 +++--- src/gui/kernel/qkeysequence.h | 26 +++--- src/gui/kernel/qkeysequence_p.h | 26 +++--- src/gui/kernel/qlayout.cpp | 26 +++--- src/gui/kernel/qlayout.h | 26 +++--- src/gui/kernel/qlayout_p.h | 26 +++--- src/gui/kernel/qlayoutengine.cpp | 26 +++--- src/gui/kernel/qlayoutengine_p.h | 26 +++--- src/gui/kernel/qlayoutitem.cpp | 26 +++--- src/gui/kernel/qlayoutitem.h | 26 +++--- src/gui/kernel/qmacdefines_mac.h | 26 +++--- src/gui/kernel/qmime.cpp | 26 +++--- src/gui/kernel/qmime.h | 26 +++--- src/gui/kernel/qmime_mac.cpp | 26 +++--- src/gui/kernel/qmime_win.cpp | 26 +++--- src/gui/kernel/qmotifdnd_x11.cpp | 26 +++--- src/gui/kernel/qnsframeview_mac_p.h | 26 +++--- src/gui/kernel/qnsthemeframe_mac_p.h | 26 +++--- src/gui/kernel/qnstitledframe_mac_p.h | 26 +++--- src/gui/kernel/qole_win.cpp | 26 +++--- src/gui/kernel/qpalette.cpp | 26 +++--- src/gui/kernel/qpalette.h | 26 +++--- src/gui/kernel/qsessionmanager.h | 26 +++--- src/gui/kernel/qsessionmanager_qws.cpp | 26 +++--- src/gui/kernel/qshortcut.cpp | 26 +++--- src/gui/kernel/qshortcut.h | 26 +++--- src/gui/kernel/qshortcutmap.cpp | 26 +++--- src/gui/kernel/qshortcutmap_p.h | 26 +++--- src/gui/kernel/qsizepolicy.h | 26 +++--- src/gui/kernel/qsound.cpp | 26 +++--- src/gui/kernel/qsound.h | 26 +++--- src/gui/kernel/qsound_mac.mm | 26 +++--- src/gui/kernel/qsound_p.h | 26 +++--- src/gui/kernel/qsound_qws.cpp | 26 +++--- src/gui/kernel/qsound_win.cpp | 26 +++--- src/gui/kernel/qsound_x11.cpp | 26 +++--- src/gui/kernel/qstackedlayout.cpp | 26 +++--- src/gui/kernel/qstackedlayout.h | 26 +++--- src/gui/kernel/qt_cocoa_helpers_mac.mm | 26 +++--- src/gui/kernel/qt_cocoa_helpers_mac_p.h | 26 +++--- src/gui/kernel/qt_gui_pch.h | 26 +++--- src/gui/kernel/qt_mac.cpp | 26 +++--- src/gui/kernel/qt_mac_p.h | 26 +++--- src/gui/kernel/qt_x11_p.h | 26 +++--- src/gui/kernel/qtooltip.cpp | 26 +++--- src/gui/kernel/qtooltip.h | 26 +++--- src/gui/kernel/qwhatsthis.cpp | 26 +++--- src/gui/kernel/qwhatsthis.h | 26 +++--- src/gui/kernel/qwidget.cpp | 26 +++--- src/gui/kernel/qwidget.h | 26 +++--- src/gui/kernel/qwidget_mac.mm | 26 +++--- src/gui/kernel/qwidget_p.h | 26 +++--- src/gui/kernel/qwidget_qws.cpp | 26 +++--- src/gui/kernel/qwidget_win.cpp | 26 +++--- src/gui/kernel/qwidget_wince.cpp | 26 +++--- src/gui/kernel/qwidget_x11.cpp | 26 +++--- src/gui/kernel/qwidgetaction.cpp | 26 +++--- src/gui/kernel/qwidgetaction.h | 26 +++--- src/gui/kernel/qwidgetaction_p.h | 26 +++--- src/gui/kernel/qwidgetcreate_x11.cpp | 26 +++--- src/gui/kernel/qwindowdefs.h | 26 +++--- src/gui/kernel/qwindowdefs_win.h | 26 +++--- src/gui/kernel/qx11embed_x11.cpp | 26 +++--- src/gui/kernel/qx11embed_x11.h | 26 +++--- src/gui/kernel/qx11info_x11.cpp | 26 +++--- src/gui/kernel/qx11info_x11.h | 26 +++--- src/gui/painting/qbackingstore.cpp | 26 +++--- src/gui/painting/qbackingstore_p.h | 26 +++--- src/gui/painting/qbezier.cpp | 26 +++--- src/gui/painting/qbezier_p.h | 26 +++--- src/gui/painting/qblendfunctions.cpp | 26 +++--- src/gui/painting/qbrush.cpp | 26 +++--- src/gui/painting/qbrush.h | 26 +++--- src/gui/painting/qcolor.cpp | 26 +++--- src/gui/painting/qcolor.h | 26 +++--- src/gui/painting/qcolor_p.cpp | 26 +++--- src/gui/painting/qcolor_p.h | 26 +++--- src/gui/painting/qcolormap.h | 26 +++--- src/gui/painting/qcolormap_mac.cpp | 26 +++--- src/gui/painting/qcolormap_qws.cpp | 26 +++--- src/gui/painting/qcolormap_win.cpp | 26 +++--- src/gui/painting/qcolormap_x11.cpp | 26 +++--- src/gui/painting/qcssutil.cpp | 26 +++--- src/gui/painting/qcssutil_p.h | 26 +++--- src/gui/painting/qcups.cpp | 26 +++--- src/gui/painting/qcups_p.h | 26 +++--- src/gui/painting/qdatabuffer_p.h | 26 +++--- src/gui/painting/qdrawhelper.cpp | 26 +++--- src/gui/painting/qdrawhelper_iwmmxt.cpp | 26 +++--- src/gui/painting/qdrawhelper_mmx.cpp | 26 +++--- src/gui/painting/qdrawhelper_mmx3dnow.cpp | 26 +++--- src/gui/painting/qdrawhelper_mmx_p.h | 26 +++--- src/gui/painting/qdrawhelper_p.h | 26 +++--- src/gui/painting/qdrawhelper_sse.cpp | 26 +++--- src/gui/painting/qdrawhelper_sse2.cpp | 26 +++--- src/gui/painting/qdrawhelper_sse3dnow.cpp | 26 +++--- src/gui/painting/qdrawhelper_sse_p.h | 26 +++--- src/gui/painting/qdrawhelper_x86_p.h | 26 +++--- src/gui/painting/qdrawutil.cpp | 26 +++--- src/gui/painting/qdrawutil.h | 26 +++--- src/gui/painting/qemulationpaintengine.cpp | 26 +++--- src/gui/painting/qemulationpaintengine_p.h | 26 +++--- src/gui/painting/qfixed_p.h | 26 +++--- src/gui/painting/qgraphicssystem.cpp | 26 +++--- src/gui/painting/qgraphicssystem_mac.cpp | 26 +++--- src/gui/painting/qgraphicssystem_mac_p.h | 26 +++--- src/gui/painting/qgraphicssystem_p.h | 26 +++--- src/gui/painting/qgraphicssystem_qws.cpp | 26 +++--- src/gui/painting/qgraphicssystem_qws_p.h | 26 +++--- src/gui/painting/qgraphicssystem_raster.cpp | 26 +++--- src/gui/painting/qgraphicssystem_raster_p.h | 26 +++--- src/gui/painting/qgraphicssystemfactory.cpp | 26 +++--- src/gui/painting/qgraphicssystemfactory_p.h | 26 +++--- src/gui/painting/qgraphicssystemplugin.cpp | 26 +++--- src/gui/painting/qgraphicssystemplugin_p.h | 26 +++--- src/gui/painting/qgrayraster.c | 26 +++--- src/gui/painting/qgrayraster_p.h | 26 +++--- src/gui/painting/qimagescale.cpp | 26 +++--- src/gui/painting/qimagescale_p.h | 26 +++--- src/gui/painting/qmath_p.h | 26 +++--- src/gui/painting/qmatrix.cpp | 26 +++--- src/gui/painting/qmatrix.h | 26 +++--- src/gui/painting/qmemrotate.cpp | 26 +++--- src/gui/painting/qmemrotate_p.h | 26 +++--- src/gui/painting/qoutlinemapper.cpp | 26 +++--- src/gui/painting/qoutlinemapper_p.h | 26 +++--- src/gui/painting/qpaintdevice.h | 26 +++--- src/gui/painting/qpaintdevice_mac.cpp | 26 +++--- src/gui/painting/qpaintdevice_qws.cpp | 26 +++--- src/gui/painting/qpaintdevice_win.cpp | 26 +++--- src/gui/painting/qpaintdevice_x11.cpp | 26 +++--- src/gui/painting/qpaintengine.cpp | 26 +++--- src/gui/painting/qpaintengine.h | 26 +++--- src/gui/painting/qpaintengine_alpha.cpp | 26 +++--- src/gui/painting/qpaintengine_alpha_p.h | 26 +++--- src/gui/painting/qpaintengine_d3d.cpp | 26 +++--- src/gui/painting/qpaintengine_d3d_p.h | 26 +++--- src/gui/painting/qpaintengine_mac.cpp | 26 +++--- src/gui/painting/qpaintengine_mac_p.h | 26 +++--- src/gui/painting/qpaintengine_p.h | 26 +++--- src/gui/painting/qpaintengine_preview.cpp | 26 +++--- src/gui/painting/qpaintengine_preview_p.h | 26 +++--- src/gui/painting/qpaintengine_raster.cpp | 26 +++--- src/gui/painting/qpaintengine_raster_p.h | 26 +++--- src/gui/painting/qpaintengine_x11.cpp | 26 +++--- src/gui/painting/qpaintengine_x11_p.h | 26 +++--- src/gui/painting/qpaintengineex.cpp | 26 +++--- src/gui/painting/qpaintengineex_p.h | 26 +++--- src/gui/painting/qpainter.cpp | 26 +++--- src/gui/painting/qpainter.h | 26 +++--- src/gui/painting/qpainter_p.h | 26 +++--- src/gui/painting/qpainterpath.cpp | 26 +++--- src/gui/painting/qpainterpath.h | 26 +++--- src/gui/painting/qpainterpath_p.h | 26 +++--- src/gui/painting/qpathclipper.cpp | 26 +++--- src/gui/painting/qpathclipper_p.h | 26 +++--- src/gui/painting/qpdf.cpp | 26 +++--- src/gui/painting/qpdf_p.h | 26 +++--- src/gui/painting/qpen.cpp | 26 +++--- src/gui/painting/qpen.h | 26 +++--- src/gui/painting/qpen_p.h | 26 +++--- src/gui/painting/qpolygon.cpp | 26 +++--- src/gui/painting/qpolygon.h | 26 +++--- src/gui/painting/qpolygonclipper_p.h | 26 +++--- src/gui/painting/qprintengine.h | 26 +++--- src/gui/painting/qprintengine_mac.mm | 26 +++--- src/gui/painting/qprintengine_mac_p.h | 26 +++--- src/gui/painting/qprintengine_pdf.cpp | 26 +++--- src/gui/painting/qprintengine_pdf_p.h | 26 +++--- src/gui/painting/qprintengine_ps.cpp | 26 +++--- src/gui/painting/qprintengine_ps_p.h | 26 +++--- src/gui/painting/qprintengine_qws.cpp | 26 +++--- src/gui/painting/qprintengine_qws_p.h | 26 +++--- src/gui/painting/qprintengine_win.cpp | 26 +++--- src/gui/painting/qprintengine_win_p.h | 26 +++--- src/gui/painting/qprinter.cpp | 26 +++--- src/gui/painting/qprinter.h | 26 +++--- src/gui/painting/qprinter_p.h | 26 +++--- src/gui/painting/qprinterinfo.h | 26 +++--- src/gui/painting/qprinterinfo_mac.cpp | 26 +++--- src/gui/painting/qprinterinfo_unix.cpp | 26 +++--- src/gui/painting/qprinterinfo_unix_p.h | 26 +++--- src/gui/painting/qprinterinfo_win.cpp | 26 +++--- src/gui/painting/qrasterdefs_p.h | 26 +++--- src/gui/painting/qrasterizer.cpp | 26 +++--- src/gui/painting/qrasterizer_p.h | 26 +++--- src/gui/painting/qregion.cpp | 26 +++--- src/gui/painting/qregion.h | 26 +++--- src/gui/painting/qregion_mac.cpp | 26 +++--- src/gui/painting/qregion_qws.cpp | 26 +++--- src/gui/painting/qregion_win.cpp | 26 +++--- src/gui/painting/qregion_wince.cpp | 26 +++--- src/gui/painting/qregion_x11.cpp | 26 +++--- src/gui/painting/qrgb.h | 26 +++--- src/gui/painting/qstroker.cpp | 26 +++--- src/gui/painting/qstroker_p.h | 26 +++--- src/gui/painting/qstylepainter.cpp | 26 +++--- src/gui/painting/qstylepainter.h | 26 +++--- src/gui/painting/qtessellator.cpp | 26 +++--- src/gui/painting/qtessellator_p.h | 26 +++--- src/gui/painting/qtextureglyphcache.cpp | 26 +++--- src/gui/painting/qtextureglyphcache_p.h | 26 +++--- src/gui/painting/qtransform.cpp | 26 +++--- src/gui/painting/qtransform.h | 26 +++--- src/gui/painting/qvectorpath_p.h | 26 +++--- src/gui/painting/qwindowsurface.cpp | 26 +++--- src/gui/painting/qwindowsurface_d3d.cpp | 26 +++--- src/gui/painting/qwindowsurface_d3d_p.h | 26 +++--- src/gui/painting/qwindowsurface_mac.cpp | 26 +++--- src/gui/painting/qwindowsurface_mac_p.h | 26 +++--- src/gui/painting/qwindowsurface_p.h | 26 +++--- src/gui/painting/qwindowsurface_qws.cpp | 26 +++--- src/gui/painting/qwindowsurface_qws_p.h | 26 +++--- src/gui/painting/qwindowsurface_raster.cpp | 26 +++--- src/gui/painting/qwindowsurface_raster_p.h | 26 +++--- src/gui/painting/qwindowsurface_x11.cpp | 26 +++--- src/gui/painting/qwindowsurface_x11_p.h | 26 +++--- src/gui/painting/qwmatrix.h | 26 +++--- src/gui/styles/gtksymbols.cpp | 26 +++--- src/gui/styles/gtksymbols_p.h | 26 +++--- src/gui/styles/qcdestyle.cpp | 26 +++--- src/gui/styles/qcdestyle.h | 26 +++--- src/gui/styles/qcleanlooksstyle.cpp | 26 +++--- src/gui/styles/qcleanlooksstyle.h | 26 +++--- src/gui/styles/qcleanlooksstyle_p.h | 26 +++--- src/gui/styles/qcommonstyle.cpp | 26 +++--- src/gui/styles/qcommonstyle.h | 26 +++--- src/gui/styles/qcommonstyle_p.h | 26 +++--- src/gui/styles/qcommonstylepixmaps_p.h | 26 +++--- src/gui/styles/qgtkpainter.cpp | 26 +++--- src/gui/styles/qgtkpainter_p.h | 26 +++--- src/gui/styles/qgtkstyle.cpp | 26 +++--- src/gui/styles/qgtkstyle.h | 26 +++--- src/gui/styles/qmacstyle_mac.h | 26 +++--- src/gui/styles/qmacstyle_mac.mm | 26 +++--- src/gui/styles/qmacstylepixmaps_mac_p.h | 26 +++--- src/gui/styles/qmotifstyle.cpp | 26 +++--- src/gui/styles/qmotifstyle.h | 26 +++--- src/gui/styles/qmotifstyle_p.h | 26 +++--- src/gui/styles/qplastiquestyle.cpp | 26 +++--- src/gui/styles/qplastiquestyle.h | 26 +++--- src/gui/styles/qstyle.cpp | 26 +++--- src/gui/styles/qstyle.h | 26 +++--- src/gui/styles/qstyle_p.h | 26 +++--- src/gui/styles/qstylefactory.cpp | 26 +++--- src/gui/styles/qstylefactory.h | 26 +++--- src/gui/styles/qstyleoption.cpp | 26 +++--- src/gui/styles/qstyleoption.h | 26 +++--- src/gui/styles/qstyleplugin.cpp | 26 +++--- src/gui/styles/qstyleplugin.h | 26 +++--- src/gui/styles/qstylesheetstyle.cpp | 26 +++--- src/gui/styles/qstylesheetstyle_default.cpp | 26 +++--- src/gui/styles/qstylesheetstyle_p.h | 26 +++--- src/gui/styles/qwindowscestyle.cpp | 26 +++--- src/gui/styles/qwindowscestyle.h | 26 +++--- src/gui/styles/qwindowscestyle_p.h | 26 +++--- src/gui/styles/qwindowsmobilestyle.cpp | 26 +++--- src/gui/styles/qwindowsmobilestyle.h | 26 +++--- src/gui/styles/qwindowsmobilestyle_p.h | 26 +++--- src/gui/styles/qwindowsstyle.cpp | 26 +++--- src/gui/styles/qwindowsstyle.h | 26 +++--- src/gui/styles/qwindowsstyle_p.h | 26 +++--- src/gui/styles/qwindowsvistastyle.cpp | 26 +++--- src/gui/styles/qwindowsvistastyle.h | 26 +++--- src/gui/styles/qwindowsvistastyle_p.h | 26 +++--- src/gui/styles/qwindowsxpstyle.cpp | 26 +++--- src/gui/styles/qwindowsxpstyle.h | 26 +++--- src/gui/styles/qwindowsxpstyle_p.h | 26 +++--- src/gui/text/qabstractfontengine_p.h | 26 +++--- src/gui/text/qabstractfontengine_qws.cpp | 26 +++--- src/gui/text/qabstractfontengine_qws.h | 26 +++--- src/gui/text/qabstracttextdocumentlayout.cpp | 26 +++--- src/gui/text/qabstracttextdocumentlayout.h | 26 +++--- src/gui/text/qabstracttextdocumentlayout_p.h | 26 +++--- src/gui/text/qcssparser.cpp | 26 +++--- src/gui/text/qcssparser_p.h | 26 +++--- src/gui/text/qcssscanner.cpp | 26 +++--- src/gui/text/qfont.cpp | 26 +++--- src/gui/text/qfont.h | 26 +++--- src/gui/text/qfont_mac.cpp | 26 +++--- src/gui/text/qfont_p.h | 26 +++--- src/gui/text/qfont_qws.cpp | 26 +++--- src/gui/text/qfont_win.cpp | 26 +++--- src/gui/text/qfont_x11.cpp | 26 +++--- src/gui/text/qfontdatabase.cpp | 26 +++--- src/gui/text/qfontdatabase.h | 26 +++--- src/gui/text/qfontdatabase_mac.cpp | 26 +++--- src/gui/text/qfontdatabase_qws.cpp | 26 +++--- src/gui/text/qfontdatabase_win.cpp | 26 +++--- src/gui/text/qfontdatabase_x11.cpp | 26 +++--- src/gui/text/qfontengine.cpp | 26 +++--- src/gui/text/qfontengine_ft.cpp | 26 +++--- src/gui/text/qfontengine_ft_p.h | 26 +++--- src/gui/text/qfontengine_mac.mm | 26 +++--- src/gui/text/qfontengine_p.h | 26 +++--- src/gui/text/qfontengine_qpf.cpp | 26 +++--- src/gui/text/qfontengine_qpf_p.h | 26 +++--- src/gui/text/qfontengine_qws.cpp | 26 +++--- src/gui/text/qfontengine_win.cpp | 26 +++--- src/gui/text/qfontengine_win_p.h | 26 +++--- src/gui/text/qfontengine_x11.cpp | 26 +++--- src/gui/text/qfontengine_x11_p.h | 26 +++--- src/gui/text/qfontengineglyphcache_p.h | 26 +++--- src/gui/text/qfontinfo.h | 26 +++--- src/gui/text/qfontmetrics.cpp | 26 +++--- src/gui/text/qfontmetrics.h | 26 +++--- src/gui/text/qfontsubset.cpp | 26 +++--- src/gui/text/qfontsubset_p.h | 26 +++--- src/gui/text/qfragmentmap.cpp | 26 +++--- src/gui/text/qfragmentmap_p.h | 26 +++--- src/gui/text/qpfutil.cpp | 26 +++--- src/gui/text/qsyntaxhighlighter.cpp | 26 +++--- src/gui/text/qsyntaxhighlighter.h | 26 +++--- src/gui/text/qtextcontrol.cpp | 26 +++--- src/gui/text/qtextcontrol_p.h | 26 +++--- src/gui/text/qtextcontrol_p_p.h | 26 +++--- src/gui/text/qtextcursor.cpp | 26 +++--- src/gui/text/qtextcursor.h | 26 +++--- src/gui/text/qtextcursor_p.h | 26 +++--- src/gui/text/qtextdocument.cpp | 26 +++--- src/gui/text/qtextdocument.h | 26 +++--- src/gui/text/qtextdocument_p.cpp | 26 +++--- src/gui/text/qtextdocument_p.h | 26 +++--- src/gui/text/qtextdocumentfragment.cpp | 26 +++--- src/gui/text/qtextdocumentfragment.h | 26 +++--- src/gui/text/qtextdocumentfragment_p.h | 26 +++--- src/gui/text/qtextdocumentlayout.cpp | 26 +++--- src/gui/text/qtextdocumentlayout_p.h | 26 +++--- src/gui/text/qtextdocumentwriter.cpp | 26 +++--- src/gui/text/qtextdocumentwriter.h | 26 +++--- src/gui/text/qtextengine.cpp | 26 +++--- src/gui/text/qtextengine_mac.cpp | 26 +++--- src/gui/text/qtextengine_p.h | 26 +++--- src/gui/text/qtextformat.cpp | 26 +++--- src/gui/text/qtextformat.h | 26 +++--- src/gui/text/qtextformat_p.h | 26 +++--- src/gui/text/qtexthtmlparser.cpp | 26 +++--- src/gui/text/qtexthtmlparser_p.h | 26 +++--- src/gui/text/qtextimagehandler.cpp | 26 +++--- src/gui/text/qtextimagehandler_p.h | 26 +++--- src/gui/text/qtextlayout.cpp | 26 +++--- src/gui/text/qtextlayout.h | 26 +++--- src/gui/text/qtextlist.cpp | 26 +++--- src/gui/text/qtextlist.h | 26 +++--- src/gui/text/qtextobject.cpp | 26 +++--- src/gui/text/qtextobject.h | 26 +++--- src/gui/text/qtextobject_p.h | 26 +++--- src/gui/text/qtextodfwriter.cpp | 26 +++--- src/gui/text/qtextodfwriter_p.h | 26 +++--- src/gui/text/qtextoption.cpp | 26 +++--- src/gui/text/qtextoption.h | 26 +++--- src/gui/text/qtexttable.cpp | 26 +++--- src/gui/text/qtexttable.h | 26 +++--- src/gui/text/qtexttable_p.h | 26 +++--- src/gui/text/qzip.cpp | 26 +++--- src/gui/text/qzipreader_p.h | 26 +++--- src/gui/text/qzipwriter_p.h | 26 +++--- src/gui/util/qcompleter.cpp | 26 +++--- src/gui/util/qcompleter.h | 26 +++--- src/gui/util/qcompleter_p.h | 26 +++--- src/gui/util/qdesktopservices.cpp | 26 +++--- src/gui/util/qdesktopservices.h | 26 +++--- src/gui/util/qdesktopservices_mac.cpp | 26 +++--- src/gui/util/qdesktopservices_qws.cpp | 26 +++--- src/gui/util/qdesktopservices_win.cpp | 26 +++--- src/gui/util/qdesktopservices_x11.cpp | 26 +++--- src/gui/util/qsystemtrayicon.cpp | 26 +++--- src/gui/util/qsystemtrayicon.h | 26 +++--- src/gui/util/qsystemtrayicon_mac.mm | 26 +++--- src/gui/util/qsystemtrayicon_p.h | 26 +++--- src/gui/util/qsystemtrayicon_qws.cpp | 26 +++--- src/gui/util/qsystemtrayicon_win.cpp | 26 +++--- src/gui/util/qsystemtrayicon_x11.cpp | 26 +++--- src/gui/util/qundogroup.cpp | 26 +++--- src/gui/util/qundogroup.h | 26 +++--- src/gui/util/qundostack.cpp | 26 +++--- src/gui/util/qundostack.h | 26 +++--- src/gui/util/qundostack_p.h | 26 +++--- src/gui/util/qundoview.cpp | 26 +++--- src/gui/util/qundoview.h | 26 +++--- src/gui/widgets/qabstractbutton.cpp | 26 +++--- src/gui/widgets/qabstractbutton.h | 26 +++--- src/gui/widgets/qabstractbutton_p.h | 26 +++--- src/gui/widgets/qabstractscrollarea.cpp | 26 +++--- src/gui/widgets/qabstractscrollarea.h | 26 +++--- src/gui/widgets/qabstractscrollarea_p.h | 26 +++--- src/gui/widgets/qabstractslider.cpp | 26 +++--- src/gui/widgets/qabstractslider.h | 26 +++--- src/gui/widgets/qabstractslider_p.h | 26 +++--- src/gui/widgets/qabstractspinbox.cpp | 26 +++--- src/gui/widgets/qabstractspinbox.h | 26 +++--- src/gui/widgets/qabstractspinbox_p.h | 26 +++--- src/gui/widgets/qbuttongroup.cpp | 26 +++--- src/gui/widgets/qbuttongroup.h | 26 +++--- src/gui/widgets/qcalendartextnavigator_p.h | 26 +++--- src/gui/widgets/qcalendarwidget.cpp | 26 +++--- src/gui/widgets/qcalendarwidget.h | 26 +++--- src/gui/widgets/qcheckbox.cpp | 26 +++--- src/gui/widgets/qcheckbox.h | 26 +++--- src/gui/widgets/qcocoamenu_mac.mm | 26 +++--- src/gui/widgets/qcocoamenu_mac_p.h | 26 +++--- src/gui/widgets/qcocoatoolbardelegate_mac.mm | 26 +++--- src/gui/widgets/qcocoatoolbardelegate_mac_p.h | 26 +++--- src/gui/widgets/qcombobox.cpp | 26 +++--- src/gui/widgets/qcombobox.h | 26 +++--- src/gui/widgets/qcombobox_p.h | 26 +++--- src/gui/widgets/qcommandlinkbutton.cpp | 26 +++--- src/gui/widgets/qcommandlinkbutton.h | 26 +++--- src/gui/widgets/qdatetimeedit.cpp | 26 +++--- src/gui/widgets/qdatetimeedit.h | 26 +++--- src/gui/widgets/qdatetimeedit_p.h | 26 +++--- src/gui/widgets/qdial.cpp | 26 +++--- src/gui/widgets/qdial.h | 26 +++--- src/gui/widgets/qdialogbuttonbox.cpp | 26 +++--- src/gui/widgets/qdialogbuttonbox.h | 26 +++--- src/gui/widgets/qdockarealayout.cpp | 26 +++--- src/gui/widgets/qdockarealayout_p.h | 26 +++--- src/gui/widgets/qdockwidget.cpp | 26 +++--- src/gui/widgets/qdockwidget.h | 26 +++--- src/gui/widgets/qdockwidget_p.h | 26 +++--- src/gui/widgets/qeffects.cpp | 26 +++--- src/gui/widgets/qeffects_p.h | 26 +++--- src/gui/widgets/qfocusframe.cpp | 26 +++--- src/gui/widgets/qfocusframe.h | 26 +++--- src/gui/widgets/qfontcombobox.cpp | 26 +++--- src/gui/widgets/qfontcombobox.h | 26 +++--- src/gui/widgets/qframe.cpp | 26 +++--- src/gui/widgets/qframe.h | 26 +++--- src/gui/widgets/qframe_p.h | 26 +++--- src/gui/widgets/qgroupbox.cpp | 26 +++--- src/gui/widgets/qgroupbox.h | 26 +++--- src/gui/widgets/qlabel.cpp | 26 +++--- src/gui/widgets/qlabel.h | 26 +++--- src/gui/widgets/qlabel_p.h | 26 +++--- src/gui/widgets/qlcdnumber.cpp | 26 +++--- src/gui/widgets/qlcdnumber.h | 26 +++--- src/gui/widgets/qlineedit.cpp | 26 +++--- src/gui/widgets/qlineedit.h | 26 +++--- src/gui/widgets/qlineedit_p.h | 26 +++--- src/gui/widgets/qmaccocoaviewcontainer_mac.h | 26 +++--- src/gui/widgets/qmaccocoaviewcontainer_mac.mm | 26 +++--- src/gui/widgets/qmacnativewidget_mac.h | 26 +++--- src/gui/widgets/qmacnativewidget_mac.mm | 26 +++--- src/gui/widgets/qmainwindow.cpp | 26 +++--- src/gui/widgets/qmainwindow.h | 26 +++--- src/gui/widgets/qmainwindowlayout.cpp | 26 +++--- src/gui/widgets/qmainwindowlayout_mac.mm | 26 +++--- src/gui/widgets/qmainwindowlayout_p.h | 26 +++--- src/gui/widgets/qmdiarea.cpp | 26 +++--- src/gui/widgets/qmdiarea.h | 26 +++--- src/gui/widgets/qmdiarea_p.h | 26 +++--- src/gui/widgets/qmdisubwindow.cpp | 26 +++--- src/gui/widgets/qmdisubwindow.h | 26 +++--- src/gui/widgets/qmdisubwindow_p.h | 26 +++--- src/gui/widgets/qmenu.cpp | 26 +++--- src/gui/widgets/qmenu.h | 26 +++--- src/gui/widgets/qmenu_mac.mm | 26 +++--- src/gui/widgets/qmenu_p.h | 26 +++--- src/gui/widgets/qmenu_wince.cpp | 26 +++--- src/gui/widgets/qmenu_wince_resource_p.h | 26 +++--- src/gui/widgets/qmenubar.cpp | 26 +++--- src/gui/widgets/qmenubar.h | 26 +++--- src/gui/widgets/qmenubar_p.h | 26 +++--- src/gui/widgets/qmenudata.cpp | 26 +++--- src/gui/widgets/qmenudata.h | 26 +++--- src/gui/widgets/qplaintextedit.cpp | 26 +++--- src/gui/widgets/qplaintextedit.h | 26 +++--- src/gui/widgets/qplaintextedit_p.h | 26 +++--- src/gui/widgets/qprintpreviewwidget.cpp | 26 +++--- src/gui/widgets/qprintpreviewwidget.h | 26 +++--- src/gui/widgets/qprogressbar.cpp | 26 +++--- src/gui/widgets/qprogressbar.h | 26 +++--- src/gui/widgets/qpushbutton.cpp | 26 +++--- src/gui/widgets/qpushbutton.h | 26 +++--- src/gui/widgets/qpushbutton_p.h | 26 +++--- src/gui/widgets/qradiobutton.cpp | 26 +++--- src/gui/widgets/qradiobutton.h | 26 +++--- src/gui/widgets/qrubberband.cpp | 26 +++--- src/gui/widgets/qrubberband.h | 26 +++--- src/gui/widgets/qscrollarea.cpp | 26 +++--- src/gui/widgets/qscrollarea.h | 26 +++--- src/gui/widgets/qscrollarea_p.h | 26 +++--- src/gui/widgets/qscrollbar.cpp | 26 +++--- src/gui/widgets/qscrollbar.h | 26 +++--- src/gui/widgets/qsizegrip.cpp | 26 +++--- src/gui/widgets/qsizegrip.h | 26 +++--- src/gui/widgets/qslider.cpp | 26 +++--- src/gui/widgets/qslider.h | 26 +++--- src/gui/widgets/qspinbox.cpp | 26 +++--- src/gui/widgets/qspinbox.h | 26 +++--- src/gui/widgets/qsplashscreen.cpp | 26 +++--- src/gui/widgets/qsplashscreen.h | 26 +++--- src/gui/widgets/qsplitter.cpp | 26 +++--- src/gui/widgets/qsplitter.h | 26 +++--- src/gui/widgets/qsplitter_p.h | 26 +++--- src/gui/widgets/qstackedwidget.cpp | 26 +++--- src/gui/widgets/qstackedwidget.h | 26 +++--- src/gui/widgets/qstatusbar.cpp | 26 +++--- src/gui/widgets/qstatusbar.h | 26 +++--- src/gui/widgets/qtabbar.cpp | 26 +++--- src/gui/widgets/qtabbar.h | 26 +++--- src/gui/widgets/qtabbar_p.h | 26 +++--- src/gui/widgets/qtabwidget.cpp | 26 +++--- src/gui/widgets/qtabwidget.h | 26 +++--- src/gui/widgets/qtextbrowser.cpp | 26 +++--- src/gui/widgets/qtextbrowser.h | 26 +++--- src/gui/widgets/qtextedit.cpp | 26 +++--- src/gui/widgets/qtextedit.h | 26 +++--- src/gui/widgets/qtextedit_p.h | 26 +++--- src/gui/widgets/qtoolbar.cpp | 26 +++--- src/gui/widgets/qtoolbar.h | 26 +++--- src/gui/widgets/qtoolbar_p.h | 26 +++--- src/gui/widgets/qtoolbararealayout.cpp | 26 +++--- src/gui/widgets/qtoolbararealayout_p.h | 26 +++--- src/gui/widgets/qtoolbarextension.cpp | 26 +++--- src/gui/widgets/qtoolbarextension_p.h | 26 +++--- src/gui/widgets/qtoolbarlayout.cpp | 26 +++--- src/gui/widgets/qtoolbarlayout_p.h | 26 +++--- src/gui/widgets/qtoolbarseparator.cpp | 26 +++--- src/gui/widgets/qtoolbarseparator_p.h | 26 +++--- src/gui/widgets/qtoolbox.cpp | 26 +++--- src/gui/widgets/qtoolbox.h | 26 +++--- src/gui/widgets/qtoolbutton.cpp | 26 +++--- src/gui/widgets/qtoolbutton.h | 26 +++--- src/gui/widgets/qvalidator.cpp | 26 +++--- src/gui/widgets/qvalidator.h | 26 +++--- src/gui/widgets/qwidgetanimator.cpp | 26 +++--- src/gui/widgets/qwidgetanimator_p.h | 26 +++--- src/gui/widgets/qwidgetresizehandler.cpp | 26 +++--- src/gui/widgets/qwidgetresizehandler_p.h | 26 +++--- src/gui/widgets/qworkspace.cpp | 26 +++--- src/gui/widgets/qworkspace.h | 26 +++--- src/network/access/qabstractnetworkcache.cpp | 26 +++--- src/network/access/qabstractnetworkcache.h | 26 +++--- src/network/access/qabstractnetworkcache_p.h | 26 +++--- src/network/access/qftp.cpp | 26 +++--- src/network/access/qftp.h | 26 +++--- src/network/access/qhttp.cpp | 26 +++--- src/network/access/qhttp.h | 26 +++--- src/network/access/qhttpnetworkconnection.cpp | 26 +++--- src/network/access/qhttpnetworkconnection_p.h | 26 +++--- src/network/access/qhttpnetworkheader.cpp | 26 +++--- src/network/access/qhttpnetworkheader_p.h | 26 +++--- src/network/access/qhttpnetworkreply.cpp | 26 +++--- src/network/access/qhttpnetworkreply_p.h | 26 +++--- src/network/access/qhttpnetworkrequest.cpp | 26 +++--- src/network/access/qhttpnetworkrequest_p.h | 26 +++--- src/network/access/qnetworkaccessbackend.cpp | 26 +++--- src/network/access/qnetworkaccessbackend_p.h | 26 +++--- src/network/access/qnetworkaccesscache.cpp | 26 +++--- src/network/access/qnetworkaccesscache_p.h | 26 +++--- src/network/access/qnetworkaccesscachebackend.cpp | 26 +++--- src/network/access/qnetworkaccesscachebackend_p.h | 26 +++--- src/network/access/qnetworkaccessdatabackend.cpp | 26 +++--- src/network/access/qnetworkaccessdatabackend_p.h | 26 +++--- .../access/qnetworkaccessdebugpipebackend.cpp | 26 +++--- .../access/qnetworkaccessdebugpipebackend_p.h | 26 +++--- src/network/access/qnetworkaccessfilebackend.cpp | 26 +++--- src/network/access/qnetworkaccessfilebackend_p.h | 26 +++--- src/network/access/qnetworkaccessftpbackend.cpp | 26 +++--- src/network/access/qnetworkaccessftpbackend_p.h | 26 +++--- src/network/access/qnetworkaccesshttpbackend.cpp | 26 +++--- src/network/access/qnetworkaccesshttpbackend_p.h | 26 +++--- src/network/access/qnetworkaccessmanager.cpp | 26 +++--- src/network/access/qnetworkaccessmanager.h | 26 +++--- src/network/access/qnetworkaccessmanager_p.h | 26 +++--- src/network/access/qnetworkcookie.cpp | 26 +++--- src/network/access/qnetworkcookie.h | 26 +++--- src/network/access/qnetworkcookie_p.h | 26 +++--- src/network/access/qnetworkdiskcache.cpp | 26 +++--- src/network/access/qnetworkdiskcache.h | 26 +++--- src/network/access/qnetworkdiskcache_p.h | 26 +++--- src/network/access/qnetworkreply.cpp | 26 +++--- src/network/access/qnetworkreply.h | 26 +++--- src/network/access/qnetworkreply_p.h | 26 +++--- src/network/access/qnetworkreplyimpl.cpp | 26 +++--- src/network/access/qnetworkreplyimpl_p.h | 26 +++--- src/network/access/qnetworkrequest.cpp | 26 +++--- src/network/access/qnetworkrequest.h | 26 +++--- src/network/access/qnetworkrequest_p.h | 26 +++--- src/network/kernel/qauthenticator.cpp | 26 +++--- src/network/kernel/qauthenticator.h | 26 +++--- src/network/kernel/qauthenticator_p.h | 26 +++--- src/network/kernel/qhostaddress.cpp | 26 +++--- src/network/kernel/qhostaddress.h | 26 +++--- src/network/kernel/qhostaddress_p.h | 26 +++--- src/network/kernel/qhostinfo.cpp | 26 +++--- src/network/kernel/qhostinfo.h | 26 +++--- src/network/kernel/qhostinfo_p.h | 26 +++--- src/network/kernel/qhostinfo_unix.cpp | 26 +++--- src/network/kernel/qhostinfo_win.cpp | 26 +++--- src/network/kernel/qnetworkinterface.cpp | 26 +++--- src/network/kernel/qnetworkinterface.h | 26 +++--- src/network/kernel/qnetworkinterface_p.h | 26 +++--- src/network/kernel/qnetworkinterface_unix.cpp | 26 +++--- src/network/kernel/qnetworkinterface_win.cpp | 26 +++--- src/network/kernel/qnetworkinterface_win_p.h | 26 +++--- src/network/kernel/qnetworkproxy.cpp | 26 +++--- src/network/kernel/qnetworkproxy.h | 26 +++--- src/network/kernel/qnetworkproxy_generic.cpp | 26 +++--- src/network/kernel/qnetworkproxy_mac.cpp | 26 +++--- src/network/kernel/qnetworkproxy_win.cpp | 26 +++--- src/network/kernel/qurlinfo.cpp | 26 +++--- src/network/kernel/qurlinfo.h | 26 +++--- src/network/socket/qabstractsocket.cpp | 26 +++--- src/network/socket/qabstractsocket.h | 26 +++--- src/network/socket/qabstractsocket_p.h | 26 +++--- src/network/socket/qabstractsocketengine.cpp | 26 +++--- src/network/socket/qabstractsocketengine_p.h | 26 +++--- src/network/socket/qhttpsocketengine.cpp | 26 +++--- src/network/socket/qhttpsocketengine_p.h | 26 +++--- src/network/socket/qlocalserver.cpp | 26 +++--- src/network/socket/qlocalserver.h | 26 +++--- src/network/socket/qlocalserver_p.h | 26 +++--- src/network/socket/qlocalserver_tcp.cpp | 26 +++--- src/network/socket/qlocalserver_unix.cpp | 26 +++--- src/network/socket/qlocalserver_win.cpp | 26 +++--- src/network/socket/qlocalsocket.cpp | 26 +++--- src/network/socket/qlocalsocket.h | 26 +++--- src/network/socket/qlocalsocket_p.h | 26 +++--- src/network/socket/qlocalsocket_tcp.cpp | 26 +++--- src/network/socket/qlocalsocket_unix.cpp | 26 +++--- src/network/socket/qlocalsocket_win.cpp | 26 +++--- src/network/socket/qnativesocketengine.cpp | 26 +++--- src/network/socket/qnativesocketengine_p.h | 26 +++--- src/network/socket/qnativesocketengine_unix.cpp | 26 +++--- src/network/socket/qnativesocketengine_win.cpp | 26 +++--- src/network/socket/qsocks5socketengine.cpp | 26 +++--- src/network/socket/qsocks5socketengine_p.h | 26 +++--- src/network/socket/qtcpserver.cpp | 26 +++--- src/network/socket/qtcpserver.h | 26 +++--- src/network/socket/qtcpsocket.cpp | 26 +++--- src/network/socket/qtcpsocket.h | 26 +++--- src/network/socket/qtcpsocket_p.h | 26 +++--- src/network/socket/qudpsocket.cpp | 26 +++--- src/network/socket/qudpsocket.h | 26 +++--- src/network/ssl/qssl.cpp | 26 +++--- src/network/ssl/qssl.h | 26 +++--- src/network/ssl/qsslcertificate.cpp | 26 +++--- src/network/ssl/qsslcertificate.h | 26 +++--- src/network/ssl/qsslcertificate_p.h | 26 +++--- src/network/ssl/qsslcipher.cpp | 26 +++--- src/network/ssl/qsslcipher.h | 26 +++--- src/network/ssl/qsslcipher_p.h | 26 +++--- src/network/ssl/qsslconfiguration.cpp | 26 +++--- src/network/ssl/qsslconfiguration.h | 26 +++--- src/network/ssl/qsslconfiguration_p.h | 26 +++--- src/network/ssl/qsslerror.cpp | 26 +++--- src/network/ssl/qsslerror.h | 26 +++--- src/network/ssl/qsslkey.cpp | 26 +++--- src/network/ssl/qsslkey.h | 26 +++--- src/network/ssl/qsslkey_p.h | 26 +++--- src/network/ssl/qsslsocket.cpp | 26 +++--- src/network/ssl/qsslsocket.h | 26 +++--- src/network/ssl/qsslsocket_openssl.cpp | 26 +++--- src/network/ssl/qsslsocket_openssl_p.h | 26 +++--- src/network/ssl/qsslsocket_openssl_symbols.cpp | 26 +++--- src/network/ssl/qsslsocket_openssl_symbols_p.h | 26 +++--- src/network/ssl/qsslsocket_p.h | 26 +++--- src/opengl/gl2paintengineex/glgc_shader_source.h | 26 +++--- src/opengl/gl2paintengineex/qgl2pexvertexarray.cpp | 26 +++--- src/opengl/gl2paintengineex/qgl2pexvertexarray_p.h | 26 +++--- src/opengl/gl2paintengineex/qglgradientcache.cpp | 26 +++--- src/opengl/gl2paintengineex/qglgradientcache_p.h | 26 +++--- .../gl2paintengineex/qglpexshadermanager.cpp | 26 +++--- .../gl2paintengineex/qglpexshadermanager_p.h | 26 +++--- src/opengl/gl2paintengineex/qglshader.cpp | 26 +++--- src/opengl/gl2paintengineex/qglshader_p.h | 26 +++--- .../gl2paintengineex/qpaintengineex_opengl2.cpp | 26 +++--- .../gl2paintengineex/qpaintengineex_opengl2_p.h | 26 +++--- src/opengl/qegl.cpp | 26 +++--- src/opengl/qegl_p.h | 26 +++--- src/opengl/qegl_qws.cpp | 26 +++--- src/opengl/qegl_wince.cpp | 26 +++--- src/opengl/qegl_x11egl.cpp | 26 +++--- src/opengl/qgl.cpp | 26 +++--- src/opengl/qgl.h | 26 +++--- src/opengl/qgl_cl_p.h | 26 +++--- src/opengl/qgl_egl.cpp | 26 +++--- src/opengl/qgl_egl_p.h | 26 +++--- src/opengl/qgl_mac.mm | 26 +++--- src/opengl/qgl_p.h | 26 +++--- src/opengl/qgl_qws.cpp | 26 +++--- src/opengl/qgl_win.cpp | 26 +++--- src/opengl/qgl_wince.cpp | 26 +++--- src/opengl/qgl_x11.cpp | 26 +++--- src/opengl/qgl_x11egl.cpp | 26 +++--- src/opengl/qglcolormap.cpp | 26 +++--- src/opengl/qglcolormap.h | 26 +++--- src/opengl/qglextensions.cpp | 26 +++--- src/opengl/qglextensions_p.h | 26 +++--- src/opengl/qglframebufferobject.cpp | 26 +++--- src/opengl/qglframebufferobject.h | 26 +++--- src/opengl/qglpaintdevice_qws.cpp | 26 +++--- src/opengl/qglpaintdevice_qws_p.h | 26 +++--- src/opengl/qglpixelbuffer.cpp | 26 +++--- src/opengl/qglpixelbuffer.h | 26 +++--- src/opengl/qglpixelbuffer_egl.cpp | 26 +++--- src/opengl/qglpixelbuffer_mac.mm | 26 +++--- src/opengl/qglpixelbuffer_p.h | 26 +++--- src/opengl/qglpixelbuffer_win.cpp | 26 +++--- src/opengl/qglpixelbuffer_x11.cpp | 26 +++--- src/opengl/qglpixmapfilter.cpp | 26 +++--- src/opengl/qglpixmapfilter_p.h | 26 +++--- src/opengl/qglscreen_qws.cpp | 26 +++--- src/opengl/qglscreen_qws.h | 26 +++--- src/opengl/qglwindowsurface_qws.cpp | 26 +++--- src/opengl/qglwindowsurface_qws_p.h | 26 +++--- src/opengl/qgraphicssystem_gl.cpp | 26 +++--- src/opengl/qgraphicssystem_gl_p.h | 26 +++--- src/opengl/qpaintengine_opengl.cpp | 26 +++--- src/opengl/qpaintengine_opengl_p.h | 26 +++--- src/opengl/qpixmapdata_gl.cpp | 26 +++--- src/opengl/qpixmapdata_gl_p.h | 26 +++--- src/opengl/qwindowsurface_gl.cpp | 26 +++--- src/opengl/qwindowsurface_gl_p.h | 26 +++--- src/opengl/util/fragmentprograms_p.h | 26 +++--- src/opengl/util/generator.cpp | 26 +++--- src/plugins/accessible/compat/main.cpp | 26 +++--- src/plugins/accessible/compat/q3complexwidgets.cpp | 26 +++--- src/plugins/accessible/compat/q3complexwidgets.h | 26 +++--- src/plugins/accessible/compat/q3simplewidgets.cpp | 26 +++--- src/plugins/accessible/compat/q3simplewidgets.h | 26 +++--- .../accessible/compat/qaccessiblecompat.cpp | 26 +++--- src/plugins/accessible/compat/qaccessiblecompat.h | 26 +++--- src/plugins/accessible/widgets/complexwidgets.cpp | 26 +++--- src/plugins/accessible/widgets/complexwidgets.h | 26 +++--- src/plugins/accessible/widgets/main.cpp | 26 +++--- src/plugins/accessible/widgets/qaccessiblemenu.cpp | 26 +++--- src/plugins/accessible/widgets/qaccessiblemenu.h | 26 +++--- .../accessible/widgets/qaccessiblewidgets.cpp | 26 +++--- .../accessible/widgets/qaccessiblewidgets.h | 26 +++--- src/plugins/accessible/widgets/rangecontrols.cpp | 26 +++--- src/plugins/accessible/widgets/rangecontrols.h | 26 +++--- src/plugins/accessible/widgets/simplewidgets.cpp | 26 +++--- src/plugins/accessible/widgets/simplewidgets.h | 26 +++--- src/plugins/codecs/cn/main.cpp | 26 +++--- src/plugins/codecs/cn/qgb18030codec.cpp | 26 +++--- src/plugins/codecs/cn/qgb18030codec.h | 26 +++--- src/plugins/codecs/jp/main.cpp | 26 +++--- src/plugins/codecs/jp/qeucjpcodec.cpp | 26 +++--- src/plugins/codecs/jp/qeucjpcodec.h | 26 +++--- src/plugins/codecs/jp/qfontjpcodec.cpp | 26 +++--- src/plugins/codecs/jp/qfontjpcodec.h | 26 +++--- src/plugins/codecs/jp/qjiscodec.cpp | 26 +++--- src/plugins/codecs/jp/qjiscodec.h | 26 +++--- src/plugins/codecs/jp/qjpunicode.cpp | 26 +++--- src/plugins/codecs/jp/qjpunicode.h | 26 +++--- src/plugins/codecs/jp/qsjiscodec.cpp | 26 +++--- src/plugins/codecs/jp/qsjiscodec.h | 26 +++--- src/plugins/codecs/kr/cp949codetbl.h | 26 +++--- src/plugins/codecs/kr/main.cpp | 26 +++--- src/plugins/codecs/kr/qeuckrcodec.cpp | 26 +++--- src/plugins/codecs/kr/qeuckrcodec.h | 26 +++--- src/plugins/codecs/tw/main.cpp | 26 +++--- src/plugins/codecs/tw/qbig5codec.cpp | 26 +++--- src/plugins/codecs/tw/qbig5codec.h | 26 +++--- src/plugins/decorations/default/main.cpp | 26 +++--- src/plugins/decorations/styled/main.cpp | 26 +++--- src/plugins/decorations/windows/main.cpp | 26 +++--- src/plugins/gfxdrivers/ahi/qscreenahi_qws.cpp | 26 +++--- src/plugins/gfxdrivers/ahi/qscreenahi_qws.h | 26 +++--- src/plugins/gfxdrivers/ahi/qscreenahiplugin.cpp | 26 +++--- .../gfxdrivers/directfb/qdirectfbkeyboard.cpp | 26 +++--- .../gfxdrivers/directfb/qdirectfbkeyboard.h | 26 +++--- src/plugins/gfxdrivers/directfb/qdirectfbmouse.cpp | 26 +++--- src/plugins/gfxdrivers/directfb/qdirectfbmouse.h | 26 +++--- .../gfxdrivers/directfb/qdirectfbpaintdevice.cpp | 26 +++--- .../gfxdrivers/directfb/qdirectfbpaintdevice.h | 26 +++--- .../gfxdrivers/directfb/qdirectfbpaintengine.cpp | 26 +++--- .../gfxdrivers/directfb/qdirectfbpaintengine.h | 26 +++--- .../gfxdrivers/directfb/qdirectfbpixmap.cpp | 26 +++--- src/plugins/gfxdrivers/directfb/qdirectfbpixmap.h | 26 +++--- .../gfxdrivers/directfb/qdirectfbscreen.cpp | 26 +++--- src/plugins/gfxdrivers/directfb/qdirectfbscreen.h | 26 +++--- .../gfxdrivers/directfb/qdirectfbscreenplugin.cpp | 26 +++--- .../gfxdrivers/directfb/qdirectfbwindowsurface.cpp | 26 +++--- .../gfxdrivers/directfb/qdirectfbwindowsurface.h | 26 +++--- src/plugins/gfxdrivers/hybrid/hybridplugin.cpp | 26 +++--- src/plugins/gfxdrivers/hybrid/hybridscreen.cpp | 26 +++--- src/plugins/gfxdrivers/hybrid/hybridscreen.h | 26 +++--- src/plugins/gfxdrivers/hybrid/hybridsurface.cpp | 26 +++--- src/plugins/gfxdrivers/hybrid/hybridsurface.h | 26 +++--- src/plugins/gfxdrivers/linuxfb/main.cpp | 26 +++--- .../gfxdrivers/powervr/QWSWSEGL/pvrqwsdrawable.c | 26 +++--- .../gfxdrivers/powervr/QWSWSEGL/pvrqwsdrawable.h | 26 +++--- .../gfxdrivers/powervr/QWSWSEGL/pvrqwsdrawable_p.h | 26 +++--- .../gfxdrivers/powervr/QWSWSEGL/pvrqwswsegl.c | 26 +++--- .../powervr/pvreglscreen/pvreglscreen.cpp | 26 +++--- .../gfxdrivers/powervr/pvreglscreen/pvreglscreen.h | 26 +++--- .../powervr/pvreglscreen/pvreglscreenplugin.cpp | 26 +++--- .../powervr/pvreglscreen/pvreglwindowsurface.cpp | 26 +++--- .../powervr/pvreglscreen/pvreglwindowsurface.h | 26 +++--- src/plugins/gfxdrivers/qvfb/main.cpp | 26 +++--- src/plugins/gfxdrivers/transformed/main.cpp | 26 +++--- src/plugins/gfxdrivers/vnc/main.cpp | 26 +++--- src/plugins/gfxdrivers/vnc/qscreenvnc_p.h | 26 +++--- src/plugins/gfxdrivers/vnc/qscreenvnc_qws.cpp | 26 +++--- src/plugins/gfxdrivers/vnc/qscreenvnc_qws.h | 26 +++--- src/plugins/graphicssystems/opengl/main.cpp | 26 +++--- src/plugins/iconengines/svgiconengine/main.cpp | 26 +++--- .../iconengines/svgiconengine/qsvgiconengine.cpp | 26 +++--- .../iconengines/svgiconengine/qsvgiconengine.h | 26 +++--- src/plugins/imageformats/gif/main.cpp | 26 +++--- src/plugins/imageformats/gif/qgifhandler.cpp | 26 +++--- src/plugins/imageformats/gif/qgifhandler.h | 26 +++--- src/plugins/imageformats/ico/main.cpp | 26 +++--- src/plugins/imageformats/ico/qicohandler.cpp | 26 +++--- src/plugins/imageformats/ico/qicohandler.h | 26 +++--- src/plugins/imageformats/jpeg/main.cpp | 26 +++--- src/plugins/imageformats/jpeg/qjpeghandler.cpp | 26 +++--- src/plugins/imageformats/jpeg/qjpeghandler.h | 26 +++--- src/plugins/imageformats/mng/main.cpp | 26 +++--- src/plugins/imageformats/mng/qmnghandler.cpp | 26 +++--- src/plugins/imageformats/mng/qmnghandler.h | 26 +++--- src/plugins/imageformats/svg/main.cpp | 26 +++--- src/plugins/imageformats/svg/qsvgiohandler.cpp | 26 +++--- src/plugins/imageformats/svg/qsvgiohandler.h | 26 +++--- src/plugins/imageformats/tiff/main.cpp | 26 +++--- src/plugins/imageformats/tiff/qtiffhandler.cpp | 26 +++--- src/plugins/imageformats/tiff/qtiffhandler.h | 26 +++--- .../inputmethods/imsw-multi/qmultiinputcontext.cpp | 26 +++--- .../inputmethods/imsw-multi/qmultiinputcontext.h | 26 +++--- .../imsw-multi/qmultiinputcontextplugin.cpp | 26 +++--- .../imsw-multi/qmultiinputcontextplugin.h | 26 +++--- .../kbddrivers/linuxis/linuxiskbddriverplugin.cpp | 26 +++--- .../kbddrivers/linuxis/linuxiskbddriverplugin.h | 26 +++--- .../kbddrivers/linuxis/linuxiskbdhandler.cpp | 26 +++--- src/plugins/kbddrivers/linuxis/linuxiskbdhandler.h | 26 +++--- src/plugins/kbddrivers/sl5000/main.cpp | 26 +++--- src/plugins/kbddrivers/usb/main.cpp | 26 +++--- src/plugins/kbddrivers/vr41xx/main.cpp | 26 +++--- src/plugins/kbddrivers/yopy/main.cpp | 26 +++--- src/plugins/mousedrivers/bus/main.cpp | 26 +++--- .../linuxis/linuxismousedriverplugin.cpp | 26 +++--- .../linuxis/linuxismousedriverplugin.h | 26 +++--- .../mousedrivers/linuxis/linuxismousehandler.cpp | 26 +++--- .../mousedrivers/linuxis/linuxismousehandler.h | 26 +++--- src/plugins/mousedrivers/linuxtp/main.cpp | 26 +++--- src/plugins/mousedrivers/pc/main.cpp | 26 +++--- src/plugins/mousedrivers/tslib/main.cpp | 26 +++--- src/plugins/mousedrivers/vr41xx/main.cpp | 26 +++--- src/plugins/mousedrivers/yopy/main.cpp | 26 +++--- src/plugins/script/qtdbus/main.cpp | 26 +++--- src/plugins/script/qtdbus/main.h | 26 +++--- src/plugins/sqldrivers/db2/main.cpp | 26 +++--- src/plugins/sqldrivers/ibase/main.cpp | 26 +++--- src/plugins/sqldrivers/mysql/main.cpp | 26 +++--- src/plugins/sqldrivers/oci/main.cpp | 26 +++--- src/plugins/sqldrivers/odbc/main.cpp | 26 +++--- src/plugins/sqldrivers/psql/main.cpp | 26 +++--- src/plugins/sqldrivers/sqlite/smain.cpp | 26 +++--- src/plugins/sqldrivers/sqlite2/smain.cpp | 26 +++--- src/plugins/sqldrivers/tds/main.cpp | 26 +++--- src/qt3support/canvas/q3canvas.cpp | 26 +++--- src/qt3support/canvas/q3canvas.h | 26 +++--- src/qt3support/dialogs/q3filedialog.cpp | 26 +++--- src/qt3support/dialogs/q3filedialog.h | 26 +++--- src/qt3support/dialogs/q3filedialog_mac.cpp | 26 +++--- src/qt3support/dialogs/q3filedialog_win.cpp | 26 +++--- src/qt3support/dialogs/q3progressdialog.cpp | 26 +++--- src/qt3support/dialogs/q3progressdialog.h | 26 +++--- src/qt3support/dialogs/q3tabdialog.cpp | 26 +++--- src/qt3support/dialogs/q3tabdialog.h | 26 +++--- src/qt3support/dialogs/q3wizard.cpp | 26 +++--- src/qt3support/dialogs/q3wizard.h | 26 +++--- src/qt3support/itemviews/q3iconview.cpp | 26 +++--- src/qt3support/itemviews/q3iconview.h | 26 +++--- src/qt3support/itemviews/q3listbox.cpp | 26 +++--- src/qt3support/itemviews/q3listbox.h | 26 +++--- src/qt3support/itemviews/q3listview.cpp | 26 +++--- src/qt3support/itemviews/q3listview.h | 26 +++--- src/qt3support/itemviews/q3table.cpp | 26 +++--- src/qt3support/itemviews/q3table.h | 26 +++--- src/qt3support/network/q3dns.cpp | 26 +++--- src/qt3support/network/q3dns.h | 26 +++--- src/qt3support/network/q3ftp.cpp | 26 +++--- src/qt3support/network/q3ftp.h | 26 +++--- src/qt3support/network/q3http.cpp | 26 +++--- src/qt3support/network/q3http.h | 26 +++--- src/qt3support/network/q3localfs.cpp | 26 +++--- src/qt3support/network/q3localfs.h | 26 +++--- src/qt3support/network/q3network.cpp | 26 +++--- src/qt3support/network/q3network.h | 26 +++--- src/qt3support/network/q3networkprotocol.cpp | 26 +++--- src/qt3support/network/q3networkprotocol.h | 26 +++--- src/qt3support/network/q3serversocket.cpp | 26 +++--- src/qt3support/network/q3serversocket.h | 26 +++--- src/qt3support/network/q3socket.cpp | 26 +++--- src/qt3support/network/q3socket.h | 26 +++--- src/qt3support/network/q3socketdevice.cpp | 26 +++--- src/qt3support/network/q3socketdevice.h | 26 +++--- src/qt3support/network/q3socketdevice_unix.cpp | 26 +++--- src/qt3support/network/q3socketdevice_win.cpp | 26 +++--- src/qt3support/network/q3url.cpp | 26 +++--- src/qt3support/network/q3url.h | 26 +++--- src/qt3support/network/q3urloperator.cpp | 26 +++--- src/qt3support/network/q3urloperator.h | 26 +++--- src/qt3support/other/q3accel.cpp | 26 +++--- src/qt3support/other/q3accel.h | 26 +++--- src/qt3support/other/q3boxlayout.cpp | 26 +++--- src/qt3support/other/q3boxlayout.h | 26 +++--- src/qt3support/other/q3dragobject.cpp | 26 +++--- src/qt3support/other/q3dragobject.h | 26 +++--- src/qt3support/other/q3dropsite.cpp | 26 +++--- src/qt3support/other/q3dropsite.h | 26 +++--- src/qt3support/other/q3gridlayout.h | 26 +++--- src/qt3support/other/q3membuf.cpp | 26 +++--- src/qt3support/other/q3membuf_p.h | 26 +++--- src/qt3support/other/q3mimefactory.cpp | 26 +++--- src/qt3support/other/q3mimefactory.h | 26 +++--- src/qt3support/other/q3polygonscanner.cpp | 26 +++--- src/qt3support/other/q3polygonscanner.h | 26 +++--- src/qt3support/other/q3process.cpp | 26 +++--- src/qt3support/other/q3process.h | 26 +++--- src/qt3support/other/q3process_unix.cpp | 26 +++--- src/qt3support/other/q3process_win.cpp | 26 +++--- src/qt3support/other/qiconset.h | 26 +++--- src/qt3support/other/qt_compat_pch.h | 26 +++--- src/qt3support/painting/q3paintdevicemetrics.cpp | 26 +++--- src/qt3support/painting/q3paintdevicemetrics.h | 26 +++--- src/qt3support/painting/q3paintengine_svg.cpp | 26 +++--- src/qt3support/painting/q3paintengine_svg_p.h | 26 +++--- src/qt3support/painting/q3painter.cpp | 26 +++--- src/qt3support/painting/q3painter.h | 26 +++--- src/qt3support/painting/q3picture.cpp | 26 +++--- src/qt3support/painting/q3picture.h | 26 +++--- src/qt3support/painting/q3pointarray.cpp | 26 +++--- src/qt3support/painting/q3pointarray.h | 26 +++--- src/qt3support/sql/q3databrowser.cpp | 26 +++--- src/qt3support/sql/q3databrowser.h | 26 +++--- src/qt3support/sql/q3datatable.cpp | 26 +++--- src/qt3support/sql/q3datatable.h | 26 +++--- src/qt3support/sql/q3dataview.cpp | 26 +++--- src/qt3support/sql/q3dataview.h | 26 +++--- src/qt3support/sql/q3editorfactory.cpp | 26 +++--- src/qt3support/sql/q3editorfactory.h | 26 +++--- src/qt3support/sql/q3sqlcursor.cpp | 26 +++--- src/qt3support/sql/q3sqlcursor.h | 26 +++--- src/qt3support/sql/q3sqleditorfactory.cpp | 26 +++--- src/qt3support/sql/q3sqleditorfactory.h | 26 +++--- src/qt3support/sql/q3sqlfieldinfo.h | 26 +++--- src/qt3support/sql/q3sqlform.cpp | 26 +++--- src/qt3support/sql/q3sqlform.h | 26 +++--- src/qt3support/sql/q3sqlmanager_p.cpp | 26 +++--- src/qt3support/sql/q3sqlmanager_p.h | 26 +++--- src/qt3support/sql/q3sqlpropertymap.cpp | 26 +++--- src/qt3support/sql/q3sqlpropertymap.h | 26 +++--- src/qt3support/sql/q3sqlrecordinfo.h | 26 +++--- src/qt3support/sql/q3sqlselectcursor.cpp | 26 +++--- src/qt3support/sql/q3sqlselectcursor.h | 26 +++--- src/qt3support/text/q3multilineedit.cpp | 26 +++--- src/qt3support/text/q3multilineedit.h | 26 +++--- src/qt3support/text/q3richtext.cpp | 26 +++--- src/qt3support/text/q3richtext_p.cpp | 26 +++--- src/qt3support/text/q3richtext_p.h | 26 +++--- src/qt3support/text/q3simplerichtext.cpp | 26 +++--- src/qt3support/text/q3simplerichtext.h | 26 +++--- src/qt3support/text/q3stylesheet.cpp | 26 +++--- src/qt3support/text/q3stylesheet.h | 26 +++--- src/qt3support/text/q3syntaxhighlighter.cpp | 26 +++--- src/qt3support/text/q3syntaxhighlighter.h | 26 +++--- src/qt3support/text/q3syntaxhighlighter_p.h | 26 +++--- src/qt3support/text/q3textbrowser.cpp | 26 +++--- src/qt3support/text/q3textbrowser.h | 26 +++--- src/qt3support/text/q3textedit.cpp | 26 +++--- src/qt3support/text/q3textedit.h | 26 +++--- src/qt3support/text/q3textstream.cpp | 26 +++--- src/qt3support/text/q3textstream.h | 26 +++--- src/qt3support/text/q3textview.cpp | 26 +++--- src/qt3support/text/q3textview.h | 26 +++--- src/qt3support/tools/q3asciicache.h | 26 +++--- src/qt3support/tools/q3asciidict.h | 26 +++--- src/qt3support/tools/q3cache.h | 26 +++--- src/qt3support/tools/q3cleanuphandler.h | 26 +++--- src/qt3support/tools/q3cstring.cpp | 26 +++--- src/qt3support/tools/q3cstring.h | 26 +++--- src/qt3support/tools/q3deepcopy.cpp | 26 +++--- src/qt3support/tools/q3deepcopy.h | 26 +++--- src/qt3support/tools/q3dict.h | 26 +++--- src/qt3support/tools/q3garray.cpp | 26 +++--- src/qt3support/tools/q3garray.h | 26 +++--- src/qt3support/tools/q3gcache.cpp | 26 +++--- src/qt3support/tools/q3gcache.h | 26 +++--- src/qt3support/tools/q3gdict.cpp | 26 +++--- src/qt3support/tools/q3gdict.h | 26 +++--- src/qt3support/tools/q3glist.cpp | 26 +++--- src/qt3support/tools/q3glist.h | 26 +++--- src/qt3support/tools/q3gvector.cpp | 26 +++--- src/qt3support/tools/q3gvector.h | 26 +++--- src/qt3support/tools/q3intcache.h | 26 +++--- src/qt3support/tools/q3intdict.h | 26 +++--- src/qt3support/tools/q3memarray.h | 26 +++--- src/qt3support/tools/q3objectdict.h | 26 +++--- src/qt3support/tools/q3ptrcollection.cpp | 26 +++--- src/qt3support/tools/q3ptrcollection.h | 26 +++--- src/qt3support/tools/q3ptrdict.h | 26 +++--- src/qt3support/tools/q3ptrlist.h | 26 +++--- src/qt3support/tools/q3ptrqueue.h | 26 +++--- src/qt3support/tools/q3ptrstack.h | 26 +++--- src/qt3support/tools/q3ptrvector.h | 26 +++--- src/qt3support/tools/q3semaphore.cpp | 26 +++--- src/qt3support/tools/q3semaphore.h | 26 +++--- src/qt3support/tools/q3shared.cpp | 26 +++--- src/qt3support/tools/q3shared.h | 26 +++--- src/qt3support/tools/q3signal.cpp | 26 +++--- src/qt3support/tools/q3signal.h | 26 +++--- src/qt3support/tools/q3sortedlist.h | 26 +++--- src/qt3support/tools/q3strlist.h | 26 +++--- src/qt3support/tools/q3strvec.h | 26 +++--- src/qt3support/tools/q3tl.h | 26 +++--- src/qt3support/tools/q3valuelist.h | 26 +++--- src/qt3support/tools/q3valuestack.h | 26 +++--- src/qt3support/tools/q3valuevector.h | 26 +++--- src/qt3support/widgets/q3action.cpp | 26 +++--- src/qt3support/widgets/q3action.h | 26 +++--- src/qt3support/widgets/q3button.cpp | 26 +++--- src/qt3support/widgets/q3button.h | 26 +++--- src/qt3support/widgets/q3buttongroup.cpp | 26 +++--- src/qt3support/widgets/q3buttongroup.h | 26 +++--- src/qt3support/widgets/q3combobox.cpp | 26 +++--- src/qt3support/widgets/q3combobox.h | 26 +++--- src/qt3support/widgets/q3datetimeedit.cpp | 26 +++--- src/qt3support/widgets/q3datetimeedit.h | 26 +++--- src/qt3support/widgets/q3dockarea.cpp | 26 +++--- src/qt3support/widgets/q3dockarea.h | 26 +++--- src/qt3support/widgets/q3dockwindow.cpp | 26 +++--- src/qt3support/widgets/q3dockwindow.h | 26 +++--- src/qt3support/widgets/q3frame.cpp | 26 +++--- src/qt3support/widgets/q3frame.h | 26 +++--- src/qt3support/widgets/q3grid.cpp | 26 +++--- src/qt3support/widgets/q3grid.h | 26 +++--- src/qt3support/widgets/q3gridview.cpp | 26 +++--- src/qt3support/widgets/q3gridview.h | 26 +++--- src/qt3support/widgets/q3groupbox.cpp | 26 +++--- src/qt3support/widgets/q3groupbox.h | 26 +++--- src/qt3support/widgets/q3hbox.cpp | 26 +++--- src/qt3support/widgets/q3hbox.h | 26 +++--- src/qt3support/widgets/q3header.cpp | 26 +++--- src/qt3support/widgets/q3header.h | 26 +++--- src/qt3support/widgets/q3hgroupbox.cpp | 26 +++--- src/qt3support/widgets/q3hgroupbox.h | 26 +++--- src/qt3support/widgets/q3mainwindow.cpp | 26 +++--- src/qt3support/widgets/q3mainwindow.h | 26 +++--- src/qt3support/widgets/q3mainwindow_p.h | 26 +++--- src/qt3support/widgets/q3popupmenu.cpp | 26 +++--- src/qt3support/widgets/q3popupmenu.h | 26 +++--- src/qt3support/widgets/q3progressbar.cpp | 26 +++--- src/qt3support/widgets/q3progressbar.h | 26 +++--- src/qt3support/widgets/q3rangecontrol.cpp | 26 +++--- src/qt3support/widgets/q3rangecontrol.h | 26 +++--- src/qt3support/widgets/q3scrollview.cpp | 26 +++--- src/qt3support/widgets/q3scrollview.h | 26 +++--- src/qt3support/widgets/q3spinwidget.cpp | 26 +++--- src/qt3support/widgets/q3titlebar.cpp | 26 +++--- src/qt3support/widgets/q3titlebar_p.h | 26 +++--- src/qt3support/widgets/q3toolbar.cpp | 26 +++--- src/qt3support/widgets/q3toolbar.h | 26 +++--- src/qt3support/widgets/q3vbox.cpp | 26 +++--- src/qt3support/widgets/q3vbox.h | 26 +++--- src/qt3support/widgets/q3vgroupbox.cpp | 26 +++--- src/qt3support/widgets/q3vgroupbox.h | 26 +++--- src/qt3support/widgets/q3whatsthis.cpp | 26 +++--- src/qt3support/widgets/q3whatsthis.h | 26 +++--- src/qt3support/widgets/q3widgetstack.cpp | 26 +++--- src/qt3support/widgets/q3widgetstack.h | 26 +++--- src/script/qscript.g | 78 +++++++++--------- src/script/qscriptable.cpp | 26 +++--- src/script/qscriptable.h | 26 +++--- src/script/qscriptable_p.h | 26 +++--- src/script/qscriptarray_p.h | 26 +++--- src/script/qscriptasm.cpp | 26 +++--- src/script/qscriptasm_p.h | 26 +++--- src/script/qscriptast.cpp | 26 +++--- src/script/qscriptast_p.h | 26 +++--- src/script/qscriptastfwd_p.h | 26 +++--- src/script/qscriptastvisitor.cpp | 26 +++--- src/script/qscriptastvisitor_p.h | 26 +++--- src/script/qscriptbuffer_p.h | 26 +++--- src/script/qscriptclass.cpp | 26 +++--- src/script/qscriptclass.h | 26 +++--- src/script/qscriptclass_p.h | 26 +++--- src/script/qscriptclassdata.cpp | 26 +++--- src/script/qscriptclassdata_p.h | 26 +++--- src/script/qscriptclassinfo_p.h | 26 +++--- src/script/qscriptclasspropertyiterator.cpp | 26 +++--- src/script/qscriptclasspropertyiterator.h | 26 +++--- src/script/qscriptclasspropertyiterator_p.h | 26 +++--- src/script/qscriptcompiler.cpp | 26 +++--- src/script/qscriptcompiler_p.h | 26 +++--- src/script/qscriptcontext.cpp | 26 +++--- src/script/qscriptcontext.h | 26 +++--- src/script/qscriptcontext_p.cpp | 26 +++--- src/script/qscriptcontext_p.h | 26 +++--- src/script/qscriptcontextfwd_p.h | 26 +++--- src/script/qscriptcontextinfo.cpp | 26 +++--- src/script/qscriptcontextinfo.h | 26 +++--- src/script/qscriptcontextinfo_p.h | 26 +++--- src/script/qscriptecmaarray.cpp | 26 +++--- src/script/qscriptecmaarray_p.h | 26 +++--- src/script/qscriptecmaboolean.cpp | 26 +++--- src/script/qscriptecmaboolean_p.h | 26 +++--- src/script/qscriptecmacore.cpp | 26 +++--- src/script/qscriptecmacore_p.h | 26 +++--- src/script/qscriptecmadate.cpp | 26 +++--- src/script/qscriptecmadate_p.h | 26 +++--- src/script/qscriptecmaerror.cpp | 26 +++--- src/script/qscriptecmaerror_p.h | 26 +++--- src/script/qscriptecmafunction.cpp | 26 +++--- src/script/qscriptecmafunction_p.h | 26 +++--- src/script/qscriptecmaglobal.cpp | 26 +++--- src/script/qscriptecmaglobal_p.h | 26 +++--- src/script/qscriptecmamath.cpp | 26 +++--- src/script/qscriptecmamath_p.h | 26 +++--- src/script/qscriptecmanumber.cpp | 26 +++--- src/script/qscriptecmanumber_p.h | 26 +++--- src/script/qscriptecmaobject.cpp | 26 +++--- src/script/qscriptecmaobject_p.h | 26 +++--- src/script/qscriptecmaregexp.cpp | 26 +++--- src/script/qscriptecmaregexp_p.h | 26 +++--- src/script/qscriptecmastring.cpp | 26 +++--- src/script/qscriptecmastring_p.h | 26 +++--- src/script/qscriptengine.cpp | 26 +++--- src/script/qscriptengine.h | 26 +++--- src/script/qscriptengine_p.cpp | 26 +++--- src/script/qscriptengine_p.h | 26 +++--- src/script/qscriptengineagent.cpp | 26 +++--- src/script/qscriptengineagent.h | 26 +++--- src/script/qscriptengineagent_p.h | 26 +++--- src/script/qscriptenginefwd_p.h | 26 +++--- src/script/qscriptextensioninterface.h | 26 +++--- src/script/qscriptextensionplugin.cpp | 26 +++--- src/script/qscriptextensionplugin.h | 26 +++--- src/script/qscriptextenumeration.cpp | 26 +++--- src/script/qscriptextenumeration_p.h | 26 +++--- src/script/qscriptextqobject.cpp | 26 +++--- src/script/qscriptextqobject_p.h | 26 +++--- src/script/qscriptextvariant.cpp | 26 +++--- src/script/qscriptextvariant_p.h | 26 +++--- src/script/qscriptfunction.cpp | 26 +++--- src/script/qscriptfunction_p.h | 26 +++--- src/script/qscriptgc_p.h | 26 +++--- src/script/qscriptglobals_p.h | 26 +++--- src/script/qscriptgrammar.cpp | 26 +++--- src/script/qscriptgrammar_p.h | 26 +++--- src/script/qscriptlexer.cpp | 26 +++--- src/script/qscriptlexer_p.h | 26 +++--- src/script/qscriptmember_p.h | 26 +++--- src/script/qscriptmemberfwd_p.h | 26 +++--- src/script/qscriptmemorypool_p.h | 26 +++--- src/script/qscriptnameid_p.h | 26 +++--- src/script/qscriptnodepool_p.h | 26 +++--- src/script/qscriptobject_p.h | 26 +++--- src/script/qscriptobjectdata_p.h | 26 +++--- src/script/qscriptobjectfwd_p.h | 26 +++--- src/script/qscriptparser.cpp | 26 +++--- src/script/qscriptparser_p.h | 26 +++--- src/script/qscriptprettypretty.cpp | 26 +++--- src/script/qscriptprettypretty_p.h | 26 +++--- src/script/qscriptrepository_p.h | 26 +++--- src/script/qscriptstring.cpp | 26 +++--- src/script/qscriptstring.h | 26 +++--- src/script/qscriptstring_p.h | 26 +++--- src/script/qscriptsyntaxchecker.cpp | 26 +++--- src/script/qscriptsyntaxchecker_p.h | 26 +++--- src/script/qscriptsyntaxcheckresult_p.h | 26 +++--- src/script/qscriptvalue.cpp | 26 +++--- src/script/qscriptvalue.h | 26 +++--- src/script/qscriptvalue_p.h | 26 +++--- src/script/qscriptvaluefwd_p.h | 26 +++--- src/script/qscriptvalueimpl.cpp | 26 +++--- src/script/qscriptvalueimpl_p.h | 26 +++--- src/script/qscriptvalueimplfwd_p.h | 26 +++--- src/script/qscriptvalueiterator.cpp | 26 +++--- src/script/qscriptvalueiterator.h | 26 +++--- src/script/qscriptvalueiterator_p.h | 26 +++--- src/script/qscriptvalueiteratorimpl.cpp | 26 +++--- src/script/qscriptvalueiteratorimpl_p.h | 26 +++--- src/script/qscriptxmlgenerator.cpp | 26 +++--- src/script/qscriptxmlgenerator_p.h | 26 +++--- .../debugging/qscriptbreakpointdata.cpp | 26 +++--- .../debugging/qscriptbreakpointdata_p.h | 26 +++--- .../debugging/qscriptbreakpointsmodel.cpp | 26 +++--- .../debugging/qscriptbreakpointsmodel_p.h | 26 +++--- .../debugging/qscriptbreakpointswidget.cpp | 26 +++--- .../debugging/qscriptbreakpointswidget_p.h | 26 +++--- .../qscriptbreakpointswidgetinterface.cpp | 26 +++--- .../qscriptbreakpointswidgetinterface_p.h | 26 +++--- .../qscriptbreakpointswidgetinterface_p_p.h | 26 +++--- .../qscriptcompletionproviderinterface_p.h | 26 +++--- .../debugging/qscriptcompletiontask.cpp | 26 +++--- .../debugging/qscriptcompletiontask_p.h | 26 +++--- .../debugging/qscriptcompletiontaskinterface.cpp | 26 +++--- .../debugging/qscriptcompletiontaskinterface_p.h | 26 +++--- .../debugging/qscriptcompletiontaskinterface_p_p.h | 26 +++--- src/scripttools/debugging/qscriptdebugger.cpp | 26 +++--- src/scripttools/debugging/qscriptdebugger_p.h | 26 +++--- src/scripttools/debugging/qscriptdebuggeragent.cpp | 26 +++--- src/scripttools/debugging/qscriptdebuggeragent_p.h | 26 +++--- .../debugging/qscriptdebuggeragent_p_p.h | 26 +++--- .../debugging/qscriptdebuggerbackend.cpp | 26 +++--- .../debugging/qscriptdebuggerbackend_p.h | 26 +++--- .../debugging/qscriptdebuggerbackend_p_p.h | 26 +++--- .../debugging/qscriptdebuggercodefinderwidget.cpp | 26 +++--- .../debugging/qscriptdebuggercodefinderwidget_p.h | 26 +++--- .../qscriptdebuggercodefinderwidgetinterface.cpp | 26 +++--- .../qscriptdebuggercodefinderwidgetinterface_p.h | 26 +++--- .../qscriptdebuggercodefinderwidgetinterface_p_p.h | 26 +++--- .../debugging/qscriptdebuggercodeview.cpp | 26 +++--- .../debugging/qscriptdebuggercodeview_p.h | 26 +++--- .../debugging/qscriptdebuggercodeviewinterface.cpp | 26 +++--- .../debugging/qscriptdebuggercodeviewinterface_p.h | 26 +++--- .../qscriptdebuggercodeviewinterface_p_p.h | 26 +++--- .../debugging/qscriptdebuggercodewidget.cpp | 26 +++--- .../debugging/qscriptdebuggercodewidget_p.h | 26 +++--- .../qscriptdebuggercodewidgetinterface.cpp | 26 +++--- .../qscriptdebuggercodewidgetinterface_p.h | 26 +++--- .../qscriptdebuggercodewidgetinterface_p_p.h | 26 +++--- .../debugging/qscriptdebuggercommand.cpp | 26 +++--- .../debugging/qscriptdebuggercommand_p.h | 26 +++--- .../debugging/qscriptdebuggercommandexecutor.cpp | 26 +++--- .../debugging/qscriptdebuggercommandexecutor_p.h | 26 +++--- .../qscriptdebuggercommandschedulerfrontend.cpp | 26 +++--- .../qscriptdebuggercommandschedulerfrontend_p.h | 26 +++--- .../qscriptdebuggercommandschedulerinterface_p.h | 26 +++--- .../qscriptdebuggercommandschedulerjob.cpp | 26 +++--- .../qscriptdebuggercommandschedulerjob_p.h | 26 +++--- .../qscriptdebuggercommandschedulerjob_p_p.h | 26 +++--- .../debugging/qscriptdebuggerconsole.cpp | 26 +++--- .../debugging/qscriptdebuggerconsole_p.h | 26 +++--- .../debugging/qscriptdebuggerconsolecommand.cpp | 26 +++--- .../debugging/qscriptdebuggerconsolecommand_p.h | 26 +++--- .../debugging/qscriptdebuggerconsolecommand_p_p.h | 26 +++--- .../qscriptdebuggerconsolecommandgroupdata.cpp | 26 +++--- .../qscriptdebuggerconsolecommandgroupdata_p.h | 26 +++--- .../debugging/qscriptdebuggerconsolecommandjob.cpp | 26 +++--- .../debugging/qscriptdebuggerconsolecommandjob_p.h | 26 +++--- .../qscriptdebuggerconsolecommandjob_p_p.h | 26 +++--- .../qscriptdebuggerconsolecommandmanager.cpp | 26 +++--- .../qscriptdebuggerconsolecommandmanager_p.h | 26 +++--- .../qscriptdebuggerconsoleglobalobject.cpp | 26 +++--- .../qscriptdebuggerconsoleglobalobject_p.h | 26 +++--- .../qscriptdebuggerconsolehistorianinterface_p.h | 26 +++--- .../debugging/qscriptdebuggerconsolewidget.cpp | 26 +++--- .../debugging/qscriptdebuggerconsolewidget_p.h | 26 +++--- .../qscriptdebuggerconsolewidgetinterface.cpp | 26 +++--- .../qscriptdebuggerconsolewidgetinterface_p.h | 26 +++--- .../qscriptdebuggerconsolewidgetinterface_p_p.h | 26 +++--- src/scripttools/debugging/qscriptdebuggerevent.cpp | 26 +++--- src/scripttools/debugging/qscriptdebuggerevent_p.h | 26 +++--- .../qscriptdebuggereventhandlerinterface_p.h | 26 +++--- .../debugging/qscriptdebuggerfrontend.cpp | 26 +++--- .../debugging/qscriptdebuggerfrontend_p.h | 26 +++--- .../debugging/qscriptdebuggerfrontend_p_p.h | 26 +++--- src/scripttools/debugging/qscriptdebuggerjob.cpp | 26 +++--- src/scripttools/debugging/qscriptdebuggerjob_p.h | 26 +++--- src/scripttools/debugging/qscriptdebuggerjob_p_p.h | 26 +++--- .../qscriptdebuggerjobschedulerinterface_p.h | 26 +++--- .../debugging/qscriptdebuggerlocalsmodel.cpp | 26 +++--- .../debugging/qscriptdebuggerlocalsmodel_p.h | 26 +++--- .../debugging/qscriptdebuggerlocalswidget.cpp | 26 +++--- .../debugging/qscriptdebuggerlocalswidget_p.h | 26 +++--- .../qscriptdebuggerlocalswidgetinterface.cpp | 26 +++--- .../qscriptdebuggerlocalswidgetinterface_p.h | 26 +++--- .../qscriptdebuggerlocalswidgetinterface_p_p.h | 26 +++--- .../qscriptdebuggerobjectsnapshotdelta_p.h | 26 +++--- .../debugging/qscriptdebuggerresponse.cpp | 26 +++--- .../debugging/qscriptdebuggerresponse_p.h | 26 +++--- .../qscriptdebuggerresponsehandlerinterface_p.h | 26 +++--- .../qscriptdebuggerscriptedconsolecommand.cpp | 26 +++--- .../qscriptdebuggerscriptedconsolecommand_p.h | 26 +++--- .../debugging/qscriptdebuggerscriptsmodel.cpp | 26 +++--- .../debugging/qscriptdebuggerscriptsmodel_p.h | 26 +++--- .../debugging/qscriptdebuggerscriptswidget.cpp | 26 +++--- .../debugging/qscriptdebuggerscriptswidget_p.h | 26 +++--- .../qscriptdebuggerscriptswidgetinterface.cpp | 26 +++--- .../qscriptdebuggerscriptswidgetinterface_p.h | 26 +++--- .../qscriptdebuggerscriptswidgetinterface_p_p.h | 26 +++--- .../debugging/qscriptdebuggerstackmodel.cpp | 26 +++--- .../debugging/qscriptdebuggerstackmodel_p.h | 26 +++--- .../debugging/qscriptdebuggerstackwidget.cpp | 26 +++--- .../debugging/qscriptdebuggerstackwidget_p.h | 26 +++--- .../qscriptdebuggerstackwidgetinterface.cpp | 26 +++--- .../qscriptdebuggerstackwidgetinterface_p.h | 26 +++--- .../qscriptdebuggerstackwidgetinterface_p_p.h | 26 +++--- src/scripttools/debugging/qscriptdebuggervalue.cpp | 26 +++--- src/scripttools/debugging/qscriptdebuggervalue_p.h | 26 +++--- .../debugging/qscriptdebuggervalueproperty.cpp | 26 +++--- .../debugging/qscriptdebuggervalueproperty_p.h | 26 +++--- .../qscriptdebuggerwidgetfactoryinterface_p.h | 26 +++--- .../debugging/qscriptdebugoutputwidget.cpp | 26 +++--- .../debugging/qscriptdebugoutputwidget_p.h | 26 +++--- .../qscriptdebugoutputwidgetinterface.cpp | 26 +++--- .../qscriptdebugoutputwidgetinterface_p.h | 26 +++--- .../qscriptdebugoutputwidgetinterface_p_p.h | 26 +++--- src/scripttools/debugging/qscriptedit.cpp | 26 +++--- src/scripttools/debugging/qscriptedit_p.h | 26 +++--- .../debugging/qscriptenginedebugger.cpp | 26 +++--- src/scripttools/debugging/qscriptenginedebugger.h | 26 +++--- .../debugging/qscriptenginedebuggerfrontend.cpp | 26 +++--- .../debugging/qscriptenginedebuggerfrontend_p.h | 26 +++--- .../debugging/qscripterrorlogwidget.cpp | 26 +++--- .../debugging/qscripterrorlogwidget_p.h | 26 +++--- .../debugging/qscripterrorlogwidgetinterface.cpp | 26 +++--- .../debugging/qscripterrorlogwidgetinterface_p.h | 26 +++--- .../debugging/qscripterrorlogwidgetinterface_p_p.h | 26 +++--- .../debugging/qscriptmessagehandlerinterface_p.h | 26 +++--- .../debugging/qscriptobjectsnapshot.cpp | 26 +++--- .../debugging/qscriptobjectsnapshot_p.h | 26 +++--- src/scripttools/debugging/qscriptscriptdata.cpp | 26 +++--- src/scripttools/debugging/qscriptscriptdata_p.h | 26 +++--- .../debugging/qscriptstdmessagehandler.cpp | 26 +++--- .../debugging/qscriptstdmessagehandler_p.h | 26 +++--- .../debugging/qscriptsyntaxhighlighter.cpp | 26 +++--- .../debugging/qscriptsyntaxhighlighter_p.h | 26 +++--- .../debugging/qscripttooltipproviderinterface_p.h | 26 +++--- src/scripttools/debugging/qscriptvalueproperty.cpp | 26 +++--- src/scripttools/debugging/qscriptvalueproperty_p.h | 26 +++--- src/scripttools/debugging/qscriptxmlparser.cpp | 26 +++--- src/scripttools/debugging/qscriptxmlparser_p.h | 26 +++--- src/sql/drivers/db2/qsql_db2.cpp | 26 +++--- src/sql/drivers/db2/qsql_db2.h | 26 +++--- src/sql/drivers/ibase/qsql_ibase.cpp | 26 +++--- src/sql/drivers/ibase/qsql_ibase.h | 26 +++--- src/sql/drivers/mysql/qsql_mysql.cpp | 26 +++--- src/sql/drivers/mysql/qsql_mysql.h | 26 +++--- src/sql/drivers/oci/qsql_oci.cpp | 26 +++--- src/sql/drivers/oci/qsql_oci.h | 26 +++--- src/sql/drivers/odbc/qsql_odbc.cpp | 26 +++--- src/sql/drivers/odbc/qsql_odbc.h | 26 +++--- src/sql/drivers/psql/qsql_psql.cpp | 26 +++--- src/sql/drivers/psql/qsql_psql.h | 26 +++--- src/sql/drivers/sqlite/qsql_sqlite.cpp | 26 +++--- src/sql/drivers/sqlite/qsql_sqlite.h | 26 +++--- src/sql/drivers/sqlite2/qsql_sqlite2.cpp | 26 +++--- src/sql/drivers/sqlite2/qsql_sqlite2.h | 26 +++--- src/sql/drivers/tds/qsql_tds.cpp | 26 +++--- src/sql/drivers/tds/qsql_tds.h | 26 +++--- src/sql/kernel/qsql.h | 26 +++--- src/sql/kernel/qsqlcachedresult.cpp | 26 +++--- src/sql/kernel/qsqlcachedresult_p.h | 26 +++--- src/sql/kernel/qsqldatabase.cpp | 26 +++--- src/sql/kernel/qsqldatabase.h | 26 +++--- src/sql/kernel/qsqldriver.cpp | 26 +++--- src/sql/kernel/qsqldriver.h | 26 +++--- src/sql/kernel/qsqldriverplugin.cpp | 26 +++--- src/sql/kernel/qsqldriverplugin.h | 26 +++--- src/sql/kernel/qsqlerror.cpp | 26 +++--- src/sql/kernel/qsqlerror.h | 26 +++--- src/sql/kernel/qsqlfield.cpp | 26 +++--- src/sql/kernel/qsqlfield.h | 26 +++--- src/sql/kernel/qsqlindex.cpp | 26 +++--- src/sql/kernel/qsqlindex.h | 26 +++--- src/sql/kernel/qsqlnulldriver_p.h | 26 +++--- src/sql/kernel/qsqlquery.cpp | 26 +++--- src/sql/kernel/qsqlquery.h | 26 +++--- src/sql/kernel/qsqlrecord.cpp | 26 +++--- src/sql/kernel/qsqlrecord.h | 26 +++--- src/sql/kernel/qsqlresult.cpp | 26 +++--- src/sql/kernel/qsqlresult.h | 26 +++--- src/sql/models/qsqlquerymodel.cpp | 26 +++--- src/sql/models/qsqlquerymodel.h | 26 +++--- src/sql/models/qsqlquerymodel_p.h | 26 +++--- src/sql/models/qsqlrelationaldelegate.cpp | 26 +++--- src/sql/models/qsqlrelationaldelegate.h | 26 +++--- src/sql/models/qsqlrelationaltablemodel.cpp | 26 +++--- src/sql/models/qsqlrelationaltablemodel.h | 26 +++--- src/sql/models/qsqltablemodel.cpp | 26 +++--- src/sql/models/qsqltablemodel.h | 26 +++--- src/sql/models/qsqltablemodel_p.h | 26 +++--- src/svg/qgraphicssvgitem.cpp | 26 +++--- src/svg/qgraphicssvgitem.h | 26 +++--- src/svg/qsvgfont.cpp | 26 +++--- src/svg/qsvgfont_p.h | 26 +++--- src/svg/qsvggenerator.cpp | 26 +++--- src/svg/qsvggenerator.h | 26 +++--- src/svg/qsvggraphics.cpp | 26 +++--- src/svg/qsvggraphics_p.h | 26 +++--- src/svg/qsvghandler.cpp | 26 +++--- src/svg/qsvghandler_p.h | 26 +++--- src/svg/qsvgnode.cpp | 26 +++--- src/svg/qsvgnode_p.h | 26 +++--- src/svg/qsvgrenderer.cpp | 26 +++--- src/svg/qsvgrenderer.h | 26 +++--- src/svg/qsvgstructure.cpp | 26 +++--- src/svg/qsvgstructure_p.h | 26 +++--- src/svg/qsvgstyle.cpp | 26 +++--- src/svg/qsvgstyle_p.h | 26 +++--- src/svg/qsvgtinydocument.cpp | 26 +++--- src/svg/qsvgtinydocument_p.h | 26 +++--- src/svg/qsvgwidget.cpp | 26 +++--- src/svg/qsvgwidget.h | 26 +++--- src/testlib/qabstracttestlogger.cpp | 26 +++--- src/testlib/qabstracttestlogger_p.h | 26 +++--- src/testlib/qasciikey.cpp | 26 +++--- src/testlib/qbenchmark.cpp | 26 +++--- src/testlib/qbenchmark.h | 26 +++--- src/testlib/qbenchmark_p.h | 26 +++--- src/testlib/qbenchmarkevent.cpp | 26 +++--- src/testlib/qbenchmarkevent_p.h | 26 +++--- src/testlib/qbenchmarkmeasurement.cpp | 26 +++--- src/testlib/qbenchmarkmeasurement_p.h | 26 +++--- src/testlib/qbenchmarkvalgrind.cpp | 26 +++--- src/testlib/qbenchmarkvalgrind_p.h | 26 +++--- src/testlib/qplaintestlogger.cpp | 26 +++--- src/testlib/qplaintestlogger_p.h | 26 +++--- src/testlib/qsignaldumper.cpp | 26 +++--- src/testlib/qsignaldumper_p.h | 26 +++--- src/testlib/qsignalspy.h | 26 +++--- src/testlib/qtest.h | 26 +++--- src/testlib/qtest_global.h | 26 +++--- src/testlib/qtest_gui.h | 26 +++--- src/testlib/qtestaccessible.h | 26 +++--- src/testlib/qtestassert.h | 26 +++--- src/testlib/qtestcase.cpp | 26 +++--- src/testlib/qtestcase.h | 26 +++--- src/testlib/qtestdata.cpp | 26 +++--- src/testlib/qtestdata.h | 26 +++--- src/testlib/qtestevent.h | 26 +++--- src/testlib/qtesteventloop.h | 26 +++--- src/testlib/qtestkeyboard.h | 26 +++--- src/testlib/qtestlog.cpp | 26 +++--- src/testlib/qtestlog_p.h | 26 +++--- src/testlib/qtestmouse.h | 26 +++--- src/testlib/qtestresult.cpp | 26 +++--- src/testlib/qtestresult_p.h | 26 +++--- src/testlib/qtestspontaneevent.h | 26 +++--- src/testlib/qtestsystem.h | 26 +++--- src/testlib/qtesttable.cpp | 26 +++--- src/testlib/qtesttable_p.h | 26 +++--- src/testlib/qxmltestlogger.cpp | 26 +++--- src/testlib/qxmltestlogger_p.h | 26 +++--- src/tools/idc/main.cpp | 26 +++--- src/tools/moc/generator.cpp | 26 +++--- src/tools/moc/generator.h | 26 +++--- src/tools/moc/keywords.cpp | 26 +++--- src/tools/moc/main.cpp | 26 +++--- src/tools/moc/moc.cpp | 26 +++--- src/tools/moc/moc.h | 26 +++--- src/tools/moc/mwerks_mac.cpp | 26 +++--- src/tools/moc/mwerks_mac.h | 26 +++--- src/tools/moc/outputrevision.h | 26 +++--- src/tools/moc/parser.cpp | 26 +++--- src/tools/moc/parser.h | 26 +++--- src/tools/moc/ppkeywords.cpp | 26 +++--- src/tools/moc/preprocessor.cpp | 26 +++--- src/tools/moc/preprocessor.h | 26 +++--- src/tools/moc/symbols.h | 26 +++--- src/tools/moc/token.cpp | 26 +++--- src/tools/moc/token.h | 26 +++--- src/tools/moc/util/generate_keywords.cpp | 26 +++--- src/tools/moc/util/licenseheader.txt | 26 +++--- src/tools/moc/utils.h | 26 +++--- src/tools/rcc/main.cpp | 26 +++--- src/tools/rcc/rcc.cpp | 26 +++--- src/tools/rcc/rcc.h | 26 +++--- src/tools/uic/cpp/cppextractimages.cpp | 26 +++--- src/tools/uic/cpp/cppextractimages.h | 26 +++--- src/tools/uic/cpp/cppwritedeclaration.cpp | 26 +++--- src/tools/uic/cpp/cppwritedeclaration.h | 26 +++--- src/tools/uic/cpp/cppwriteicondata.cpp | 26 +++--- src/tools/uic/cpp/cppwriteicondata.h | 26 +++--- src/tools/uic/cpp/cppwriteicondeclaration.cpp | 26 +++--- src/tools/uic/cpp/cppwriteicondeclaration.h | 26 +++--- src/tools/uic/cpp/cppwriteiconinitialization.cpp | 26 +++--- src/tools/uic/cpp/cppwriteiconinitialization.h | 26 +++--- src/tools/uic/cpp/cppwriteincludes.cpp | 26 +++--- src/tools/uic/cpp/cppwriteincludes.h | 26 +++--- src/tools/uic/cpp/cppwriteinitialization.cpp | 26 +++--- src/tools/uic/cpp/cppwriteinitialization.h | 26 +++--- src/tools/uic/customwidgetsinfo.cpp | 26 +++--- src/tools/uic/customwidgetsinfo.h | 26 +++--- src/tools/uic/databaseinfo.cpp | 26 +++--- src/tools/uic/databaseinfo.h | 26 +++--- src/tools/uic/driver.cpp | 26 +++--- src/tools/uic/driver.h | 26 +++--- src/tools/uic/globaldefs.h | 26 +++--- src/tools/uic/main.cpp | 26 +++--- src/tools/uic/option.h | 26 +++--- src/tools/uic/treewalker.cpp | 26 +++--- src/tools/uic/treewalker.h | 26 +++--- src/tools/uic/ui4.cpp | 26 +++--- src/tools/uic/ui4.h | 26 +++--- src/tools/uic/uic.cpp | 26 +++--- src/tools/uic/uic.h | 26 +++--- src/tools/uic/utils.h | 26 +++--- src/tools/uic/validator.cpp | 26 +++--- src/tools/uic/validator.h | 26 +++--- src/tools/uic3/converter.cpp | 26 +++--- src/tools/uic3/deps.cpp | 26 +++--- src/tools/uic3/domtool.cpp | 26 +++--- src/tools/uic3/domtool.h | 26 +++--- src/tools/uic3/embed.cpp | 26 +++--- src/tools/uic3/form.cpp | 26 +++--- src/tools/uic3/main.cpp | 26 +++--- src/tools/uic3/object.cpp | 26 +++--- src/tools/uic3/parser.cpp | 26 +++--- src/tools/uic3/parser.h | 26 +++--- src/tools/uic3/qt3to4.cpp | 26 +++--- src/tools/uic3/qt3to4.h | 26 +++--- src/tools/uic3/subclassing.cpp | 26 +++--- src/tools/uic3/ui3reader.cpp | 26 +++--- src/tools/uic3/ui3reader.h | 26 +++--- src/tools/uic3/uic.cpp | 26 +++--- src/tools/uic3/uic.h | 26 +++--- src/tools/uic3/widgetinfo.cpp | 26 +++--- src/tools/uic3/widgetinfo.h | 26 +++--- src/xml/dom/qdom.cpp | 26 +++--- src/xml/dom/qdom.h | 26 +++--- src/xml/sax/qxml.cpp | 26 +++--- src/xml/sax/qxml.h | 26 +++--- src/xml/stream/qxmlstream.h | 26 +++--- src/xmlpatterns/Mainpage.dox | 26 +++--- src/xmlpatterns/acceltree/qacceliterators.cpp | 26 +++--- src/xmlpatterns/acceltree/qacceliterators_p.h | 26 +++--- src/xmlpatterns/acceltree/qacceltree.cpp | 26 +++--- src/xmlpatterns/acceltree/qacceltree_p.h | 26 +++--- src/xmlpatterns/acceltree/qacceltreebuilder.cpp | 26 +++--- src/xmlpatterns/acceltree/qacceltreebuilder_p.h | 26 +++--- .../acceltree/qacceltreeresourceloader.cpp | 26 +++--- .../acceltree/qacceltreeresourceloader_p.h | 26 +++--- .../acceltree/qcompressedwhitespace.cpp | 26 +++--- .../acceltree/qcompressedwhitespace_p.h | 26 +++--- src/xmlpatterns/api/qabstractmessagehandler.cpp | 26 +++--- src/xmlpatterns/api/qabstractmessagehandler.h | 26 +++--- src/xmlpatterns/api/qabstracturiresolver.cpp | 26 +++--- src/xmlpatterns/api/qabstracturiresolver.h | 26 +++--- .../api/qabstractxmlforwarditerator.cpp | 26 +++--- .../api/qabstractxmlforwarditerator_p.h | 26 +++--- src/xmlpatterns/api/qabstractxmlnodemodel.cpp | 26 +++--- src/xmlpatterns/api/qabstractxmlnodemodel.h | 26 +++--- src/xmlpatterns/api/qabstractxmlnodemodel_p.h | 26 +++--- src/xmlpatterns/api/qabstractxmlreceiver.cpp | 26 +++--- src/xmlpatterns/api/qabstractxmlreceiver.h | 26 +++--- src/xmlpatterns/api/qabstractxmlreceiver_p.h | 26 +++--- src/xmlpatterns/api/qdeviceresourceloader_p.h | 26 +++--- src/xmlpatterns/api/qiodevicedelegate.cpp | 26 +++--- src/xmlpatterns/api/qiodevicedelegate_p.h | 26 +++--- src/xmlpatterns/api/qnetworkaccessdelegator.cpp | 26 +++--- src/xmlpatterns/api/qnetworkaccessdelegator_p.h | 26 +++--- src/xmlpatterns/api/qreferencecountedvalue_p.h | 26 +++--- src/xmlpatterns/api/qresourcedelegator.cpp | 26 +++--- src/xmlpatterns/api/qresourcedelegator_p.h | 26 +++--- src/xmlpatterns/api/qsimplexmlnodemodel.cpp | 26 +++--- src/xmlpatterns/api/qsimplexmlnodemodel.h | 26 +++--- src/xmlpatterns/api/qsourcelocation.cpp | 26 +++--- src/xmlpatterns/api/qsourcelocation.h | 26 +++--- src/xmlpatterns/api/quriloader.cpp | 26 +++--- src/xmlpatterns/api/quriloader_p.h | 26 +++--- src/xmlpatterns/api/qvariableloader.cpp | 26 +++--- src/xmlpatterns/api/qvariableloader_p.h | 26 +++--- src/xmlpatterns/api/qxmlformatter.cpp | 26 +++--- src/xmlpatterns/api/qxmlformatter.h | 26 +++--- src/xmlpatterns/api/qxmlname.cpp | 26 +++--- src/xmlpatterns/api/qxmlname.h | 26 +++--- src/xmlpatterns/api/qxmlnamepool.cpp | 26 +++--- src/xmlpatterns/api/qxmlnamepool.h | 26 +++--- src/xmlpatterns/api/qxmlquery.cpp | 26 +++--- src/xmlpatterns/api/qxmlquery.h | 26 +++--- src/xmlpatterns/api/qxmlquery_p.h | 26 +++--- src/xmlpatterns/api/qxmlresultitems.cpp | 26 +++--- src/xmlpatterns/api/qxmlresultitems.h | 26 +++--- src/xmlpatterns/api/qxmlresultitems_p.h | 26 +++--- src/xmlpatterns/api/qxmlserializer.cpp | 26 +++--- src/xmlpatterns/api/qxmlserializer.h | 26 +++--- src/xmlpatterns/api/qxmlserializer_p.h | 26 +++--- src/xmlpatterns/data/qabstractdatetime.cpp | 26 +++--- src/xmlpatterns/data/qabstractdatetime_p.h | 26 +++--- src/xmlpatterns/data/qabstractduration.cpp | 26 +++--- src/xmlpatterns/data/qabstractduration_p.h | 26 +++--- src/xmlpatterns/data/qabstractfloat.cpp | 26 +++--- src/xmlpatterns/data/qabstractfloat_p.h | 26 +++--- src/xmlpatterns/data/qabstractfloatcasters.cpp | 26 +++--- src/xmlpatterns/data/qabstractfloatcasters_p.h | 26 +++--- .../data/qabstractfloatmathematician.cpp | 26 +++--- .../data/qabstractfloatmathematician_p.h | 26 +++--- src/xmlpatterns/data/qanyuri.cpp | 26 +++--- src/xmlpatterns/data/qanyuri_p.h | 26 +++--- src/xmlpatterns/data/qatomiccaster.cpp | 26 +++--- src/xmlpatterns/data/qatomiccaster_p.h | 26 +++--- src/xmlpatterns/data/qatomiccasters.cpp | 26 +++--- src/xmlpatterns/data/qatomiccasters_p.h | 26 +++--- src/xmlpatterns/data/qatomiccomparator.cpp | 26 +++--- src/xmlpatterns/data/qatomiccomparator_p.h | 26 +++--- src/xmlpatterns/data/qatomiccomparators.cpp | 26 +++--- src/xmlpatterns/data/qatomiccomparators_p.h | 26 +++--- src/xmlpatterns/data/qatomicmathematician.cpp | 26 +++--- src/xmlpatterns/data/qatomicmathematician_p.h | 26 +++--- src/xmlpatterns/data/qatomicmathematicians.cpp | 26 +++--- src/xmlpatterns/data/qatomicmathematicians_p.h | 26 +++--- src/xmlpatterns/data/qatomicstring.cpp | 26 +++--- src/xmlpatterns/data/qatomicstring_p.h | 26 +++--- src/xmlpatterns/data/qatomicvalue.cpp | 26 +++--- src/xmlpatterns/data/qbase64binary.cpp | 26 +++--- src/xmlpatterns/data/qbase64binary_p.h | 26 +++--- src/xmlpatterns/data/qboolean.cpp | 26 +++--- src/xmlpatterns/data/qboolean_p.h | 26 +++--- src/xmlpatterns/data/qcommonvalues.cpp | 26 +++--- src/xmlpatterns/data/qcommonvalues_p.h | 26 +++--- src/xmlpatterns/data/qdate.cpp | 26 +++--- src/xmlpatterns/data/qdate_p.h | 26 +++--- src/xmlpatterns/data/qdaytimeduration.cpp | 26 +++--- src/xmlpatterns/data/qdaytimeduration_p.h | 26 +++--- src/xmlpatterns/data/qdecimal.cpp | 26 +++--- src/xmlpatterns/data/qdecimal_p.h | 26 +++--- src/xmlpatterns/data/qderivedinteger_p.h | 26 +++--- src/xmlpatterns/data/qderivedstring_p.h | 26 +++--- src/xmlpatterns/data/qduration.cpp | 26 +++--- src/xmlpatterns/data/qduration_p.h | 26 +++--- src/xmlpatterns/data/qgday.cpp | 26 +++--- src/xmlpatterns/data/qgday_p.h | 26 +++--- src/xmlpatterns/data/qgmonth.cpp | 26 +++--- src/xmlpatterns/data/qgmonth_p.h | 26 +++--- src/xmlpatterns/data/qgmonthday.cpp | 26 +++--- src/xmlpatterns/data/qgmonthday_p.h | 26 +++--- src/xmlpatterns/data/qgyear.cpp | 26 +++--- src/xmlpatterns/data/qgyear_p.h | 26 +++--- src/xmlpatterns/data/qgyearmonth.cpp | 26 +++--- src/xmlpatterns/data/qgyearmonth_p.h | 26 +++--- src/xmlpatterns/data/qhexbinary.cpp | 26 +++--- src/xmlpatterns/data/qhexbinary_p.h | 26 +++--- src/xmlpatterns/data/qinteger.cpp | 26 +++--- src/xmlpatterns/data/qinteger_p.h | 26 +++--- src/xmlpatterns/data/qitem.cpp | 26 +++--- src/xmlpatterns/data/qitem_p.h | 26 +++--- src/xmlpatterns/data/qnodebuilder.cpp | 26 +++--- src/xmlpatterns/data/qnodebuilder_p.h | 26 +++--- src/xmlpatterns/data/qnodemodel.cpp | 26 +++--- src/xmlpatterns/data/qqnamevalue.cpp | 26 +++--- src/xmlpatterns/data/qqnamevalue_p.h | 26 +++--- src/xmlpatterns/data/qresourceloader.cpp | 26 +++--- src/xmlpatterns/data/qresourceloader_p.h | 26 +++--- src/xmlpatterns/data/qschemadatetime.cpp | 26 +++--- src/xmlpatterns/data/qschemadatetime_p.h | 26 +++--- src/xmlpatterns/data/qschemanumeric.cpp | 26 +++--- src/xmlpatterns/data/qschemanumeric_p.h | 26 +++--- src/xmlpatterns/data/qschematime.cpp | 26 +++--- src/xmlpatterns/data/qschematime_p.h | 26 +++--- src/xmlpatterns/data/qsequencereceiver.cpp | 26 +++--- src/xmlpatterns/data/qsequencereceiver_p.h | 26 +++--- src/xmlpatterns/data/qsorttuple.cpp | 26 +++--- src/xmlpatterns/data/qsorttuple_p.h | 26 +++--- src/xmlpatterns/data/quntypedatomic.cpp | 26 +++--- src/xmlpatterns/data/quntypedatomic_p.h | 26 +++--- src/xmlpatterns/data/qvalidationerror.cpp | 26 +++--- src/xmlpatterns/data/qvalidationerror_p.h | 26 +++--- src/xmlpatterns/data/qyearmonthduration.cpp | 26 +++--- src/xmlpatterns/data/qyearmonthduration_p.h | 26 +++--- src/xmlpatterns/documentationGroups.dox | 26 +++--- .../environment/createReportContext.xsl | 52 ++++++------ .../environment/qcurrentitemcontext.cpp | 26 +++--- .../environment/qcurrentitemcontext_p.h | 26 +++--- .../environment/qdelegatingdynamiccontext.cpp | 26 +++--- .../environment/qdelegatingdynamiccontext_p.h | 26 +++--- .../environment/qdelegatingstaticcontext.cpp | 26 +++--- .../environment/qdelegatingstaticcontext_p.h | 26 +++--- src/xmlpatterns/environment/qdynamiccontext.cpp | 26 +++--- src/xmlpatterns/environment/qdynamiccontext_p.h | 26 +++--- src/xmlpatterns/environment/qfocus.cpp | 26 +++--- src/xmlpatterns/environment/qfocus_p.h | 26 +++--- .../environment/qgenericdynamiccontext.cpp | 26 +++--- .../environment/qgenericdynamiccontext_p.h | 26 +++--- .../environment/qgenericstaticcontext.cpp | 26 +++--- .../environment/qgenericstaticcontext_p.h | 26 +++--- .../environment/qreceiverdynamiccontext.cpp | 26 +++--- .../environment/qreceiverdynamiccontext_p.h | 26 +++--- src/xmlpatterns/environment/qreportcontext.cpp | 26 +++--- src/xmlpatterns/environment/qreportcontext_p.h | 26 +++--- src/xmlpatterns/environment/qstackcontextbase.cpp | 26 +++--- src/xmlpatterns/environment/qstackcontextbase_p.h | 26 +++--- .../environment/qstaticbaseuricontext.cpp | 26 +++--- .../environment/qstaticbaseuricontext_p.h | 26 +++--- .../environment/qstaticcompatibilitycontext.cpp | 26 +++--- .../environment/qstaticcompatibilitycontext_p.h | 26 +++--- src/xmlpatterns/environment/qstaticcontext.cpp | 26 +++--- src/xmlpatterns/environment/qstaticcontext_p.h | 26 +++--- .../environment/qstaticcurrentcontext.cpp | 26 +++--- .../environment/qstaticcurrentcontext_p.h | 26 +++--- .../environment/qstaticfocuscontext.cpp | 26 +++--- .../environment/qstaticfocuscontext_p.h | 26 +++--- .../environment/qstaticnamespacecontext.cpp | 26 +++--- .../environment/qstaticnamespacecontext_p.h | 26 +++--- src/xmlpatterns/expr/qandexpression.cpp | 26 +++--- src/xmlpatterns/expr/qandexpression_p.h | 26 +++--- src/xmlpatterns/expr/qapplytemplate.cpp | 26 +++--- src/xmlpatterns/expr/qapplytemplate_p.h | 26 +++--- src/xmlpatterns/expr/qargumentreference.cpp | 26 +++--- src/xmlpatterns/expr/qargumentreference_p.h | 26 +++--- src/xmlpatterns/expr/qarithmeticexpression.cpp | 26 +++--- src/xmlpatterns/expr/qarithmeticexpression_p.h | 26 +++--- src/xmlpatterns/expr/qattributeconstructor.cpp | 26 +++--- src/xmlpatterns/expr/qattributeconstructor_p.h | 26 +++--- src/xmlpatterns/expr/qattributenamevalidator.cpp | 26 +++--- src/xmlpatterns/expr/qattributenamevalidator_p.h | 26 +++--- src/xmlpatterns/expr/qaxisstep.cpp | 26 +++--- src/xmlpatterns/expr/qaxisstep_p.h | 26 +++--- src/xmlpatterns/expr/qcachecells_p.h | 26 +++--- src/xmlpatterns/expr/qcallsite.cpp | 26 +++--- src/xmlpatterns/expr/qcallsite_p.h | 26 +++--- src/xmlpatterns/expr/qcalltargetdescription.cpp | 26 +++--- src/xmlpatterns/expr/qcalltargetdescription_p.h | 26 +++--- src/xmlpatterns/expr/qcalltemplate.cpp | 26 +++--- src/xmlpatterns/expr/qcalltemplate_p.h | 26 +++--- src/xmlpatterns/expr/qcastableas.cpp | 26 +++--- src/xmlpatterns/expr/qcastableas_p.h | 26 +++--- src/xmlpatterns/expr/qcastas.cpp | 26 +++--- src/xmlpatterns/expr/qcastas_p.h | 26 +++--- src/xmlpatterns/expr/qcastingplatform.cpp | 26 +++--- src/xmlpatterns/expr/qcastingplatform_p.h | 26 +++--- src/xmlpatterns/expr/qcollationchecker.cpp | 26 +++--- src/xmlpatterns/expr/qcollationchecker_p.h | 26 +++--- src/xmlpatterns/expr/qcombinenodes.cpp | 26 +++--- src/xmlpatterns/expr/qcombinenodes_p.h | 26 +++--- src/xmlpatterns/expr/qcommentconstructor.cpp | 26 +++--- src/xmlpatterns/expr/qcommentconstructor_p.h | 26 +++--- src/xmlpatterns/expr/qcomparisonplatform.cpp | 26 +++--- src/xmlpatterns/expr/qcomparisonplatform_p.h | 26 +++--- .../expr/qcomputednamespaceconstructor.cpp | 26 +++--- .../expr/qcomputednamespaceconstructor_p.h | 26 +++--- src/xmlpatterns/expr/qcontextitem.cpp | 26 +++--- src/xmlpatterns/expr/qcontextitem_p.h | 26 +++--- src/xmlpatterns/expr/qcopyof.cpp | 26 +++--- src/xmlpatterns/expr/qcopyof_p.h | 26 +++--- src/xmlpatterns/expr/qcurrentitemstore.cpp | 26 +++--- src/xmlpatterns/expr/qcurrentitemstore_p.h | 26 +++--- src/xmlpatterns/expr/qdocumentconstructor.cpp | 26 +++--- src/xmlpatterns/expr/qdocumentconstructor_p.h | 26 +++--- src/xmlpatterns/expr/qdocumentcontentvalidator.cpp | 26 +++--- src/xmlpatterns/expr/qdocumentcontentvalidator_p.h | 26 +++--- src/xmlpatterns/expr/qdynamiccontextstore.cpp | 26 +++--- src/xmlpatterns/expr/qdynamiccontextstore_p.h | 26 +++--- src/xmlpatterns/expr/qelementconstructor.cpp | 26 +++--- src/xmlpatterns/expr/qelementconstructor_p.h | 26 +++--- src/xmlpatterns/expr/qemptycontainer.cpp | 26 +++--- src/xmlpatterns/expr/qemptycontainer_p.h | 26 +++--- src/xmlpatterns/expr/qemptysequence.cpp | 26 +++--- src/xmlpatterns/expr/qemptysequence_p.h | 26 +++--- src/xmlpatterns/expr/qevaluationcache.cpp | 26 +++--- src/xmlpatterns/expr/qevaluationcache_p.h | 26 +++--- src/xmlpatterns/expr/qexpression.cpp | 26 +++--- src/xmlpatterns/expr/qexpression_p.h | 26 +++--- src/xmlpatterns/expr/qexpressiondispatch_p.h | 26 +++--- src/xmlpatterns/expr/qexpressionfactory.cpp | 26 +++--- src/xmlpatterns/expr/qexpressionfactory_p.h | 26 +++--- src/xmlpatterns/expr/qexpressionsequence.cpp | 26 +++--- src/xmlpatterns/expr/qexpressionsequence_p.h | 26 +++--- .../expr/qexpressionvariablereference.cpp | 26 +++--- .../expr/qexpressionvariablereference_p.h | 26 +++--- src/xmlpatterns/expr/qexternalvariableloader.cpp | 26 +++--- src/xmlpatterns/expr/qexternalvariableloader_p.h | 26 +++--- .../expr/qexternalvariablereference.cpp | 26 +++--- .../expr/qexternalvariablereference_p.h | 26 +++--- src/xmlpatterns/expr/qfirstitempredicate.cpp | 26 +++--- src/xmlpatterns/expr/qfirstitempredicate_p.h | 26 +++--- src/xmlpatterns/expr/qforclause.cpp | 26 +++--- src/xmlpatterns/expr/qforclause_p.h | 26 +++--- src/xmlpatterns/expr/qgeneralcomparison.cpp | 26 +++--- src/xmlpatterns/expr/qgeneralcomparison_p.h | 26 +++--- src/xmlpatterns/expr/qgenericpredicate.cpp | 26 +++--- src/xmlpatterns/expr/qgenericpredicate_p.h | 26 +++--- src/xmlpatterns/expr/qifthenclause.cpp | 26 +++--- src/xmlpatterns/expr/qifthenclause_p.h | 26 +++--- src/xmlpatterns/expr/qinstanceof.cpp | 26 +++--- src/xmlpatterns/expr/qinstanceof_p.h | 26 +++--- src/xmlpatterns/expr/qletclause.cpp | 26 +++--- src/xmlpatterns/expr/qletclause_p.h | 26 +++--- src/xmlpatterns/expr/qliteral.cpp | 26 +++--- src/xmlpatterns/expr/qliteral_p.h | 26 +++--- src/xmlpatterns/expr/qliteralsequence.cpp | 26 +++--- src/xmlpatterns/expr/qliteralsequence_p.h | 26 +++--- src/xmlpatterns/expr/qnamespaceconstructor.cpp | 26 +++--- src/xmlpatterns/expr/qnamespaceconstructor_p.h | 26 +++--- src/xmlpatterns/expr/qncnameconstructor.cpp | 26 +++--- src/xmlpatterns/expr/qncnameconstructor_p.h | 26 +++--- src/xmlpatterns/expr/qnodecomparison.cpp | 26 +++--- src/xmlpatterns/expr/qnodecomparison_p.h | 26 +++--- src/xmlpatterns/expr/qnodesort.cpp | 26 +++--- src/xmlpatterns/expr/qnodesort_p.h | 26 +++--- src/xmlpatterns/expr/qoperandsiterator_p.h | 26 +++--- src/xmlpatterns/expr/qoptimizationpasses.cpp | 26 +++--- src/xmlpatterns/expr/qoptimizationpasses_p.h | 26 +++--- src/xmlpatterns/expr/qoptimizerblocks.cpp | 26 +++--- src/xmlpatterns/expr/qoptimizerblocks_p.h | 26 +++--- src/xmlpatterns/expr/qoptimizerframework.cpp | 26 +++--- src/xmlpatterns/expr/qoptimizerframework_p.h | 26 +++--- src/xmlpatterns/expr/qorderby.cpp | 26 +++--- src/xmlpatterns/expr/qorderby_p.h | 26 +++--- src/xmlpatterns/expr/qorexpression.cpp | 26 +++--- src/xmlpatterns/expr/qorexpression_p.h | 26 +++--- src/xmlpatterns/expr/qpaircontainer.cpp | 26 +++--- src/xmlpatterns/expr/qpaircontainer_p.h | 26 +++--- src/xmlpatterns/expr/qparentnodeaxis.cpp | 26 +++--- src/xmlpatterns/expr/qparentnodeaxis_p.h | 26 +++--- src/xmlpatterns/expr/qpath.cpp | 26 +++--- src/xmlpatterns/expr/qpath_p.h | 26 +++--- .../expr/qpositionalvariablereference.cpp | 26 +++--- .../expr/qpositionalvariablereference_p.h | 26 +++--- .../expr/qprocessinginstructionconstructor.cpp | 26 +++--- .../expr/qprocessinginstructionconstructor_p.h | 26 +++--- src/xmlpatterns/expr/qqnameconstructor.cpp | 26 +++--- src/xmlpatterns/expr/qqnameconstructor_p.h | 26 +++--- src/xmlpatterns/expr/qquantifiedexpression.cpp | 26 +++--- src/xmlpatterns/expr/qquantifiedexpression_p.h | 26 +++--- src/xmlpatterns/expr/qrangeexpression.cpp | 26 +++--- src/xmlpatterns/expr/qrangeexpression_p.h | 26 +++--- src/xmlpatterns/expr/qrangevariablereference.cpp | 26 +++--- src/xmlpatterns/expr/qrangevariablereference_p.h | 26 +++--- src/xmlpatterns/expr/qreturnorderby.cpp | 26 +++--- src/xmlpatterns/expr/qreturnorderby_p.h | 26 +++--- src/xmlpatterns/expr/qsimplecontentconstructor.cpp | 26 +++--- src/xmlpatterns/expr/qsimplecontentconstructor_p.h | 26 +++--- src/xmlpatterns/expr/qsinglecontainer.cpp | 26 +++--- src/xmlpatterns/expr/qsinglecontainer_p.h | 26 +++--- src/xmlpatterns/expr/qsourcelocationreflection.cpp | 26 +++--- src/xmlpatterns/expr/qsourcelocationreflection_p.h | 26 +++--- src/xmlpatterns/expr/qstaticbaseuristore.cpp | 26 +++--- src/xmlpatterns/expr/qstaticbaseuristore_p.h | 26 +++--- src/xmlpatterns/expr/qstaticcompatibilitystore.cpp | 26 +++--- src/xmlpatterns/expr/qstaticcompatibilitystore_p.h | 26 +++--- src/xmlpatterns/expr/qtemplate.cpp | 26 +++--- src/xmlpatterns/expr/qtemplate_p.h | 26 +++--- src/xmlpatterns/expr/qtemplateinvoker.cpp | 26 +++--- src/xmlpatterns/expr/qtemplateinvoker_p.h | 26 +++--- src/xmlpatterns/expr/qtemplatemode.cpp | 26 +++--- src/xmlpatterns/expr/qtemplatemode_p.h | 26 +++--- .../expr/qtemplateparameterreference.cpp | 26 +++--- .../expr/qtemplateparameterreference_p.h | 26 +++--- src/xmlpatterns/expr/qtemplatepattern_p.h | 26 +++--- src/xmlpatterns/expr/qtextnodeconstructor.cpp | 26 +++--- src/xmlpatterns/expr/qtextnodeconstructor_p.h | 26 +++--- src/xmlpatterns/expr/qtreatas.cpp | 26 +++--- src/xmlpatterns/expr/qtreatas_p.h | 26 +++--- src/xmlpatterns/expr/qtriplecontainer.cpp | 26 +++--- src/xmlpatterns/expr/qtriplecontainer_p.h | 26 +++--- src/xmlpatterns/expr/qtruthpredicate.cpp | 26 +++--- src/xmlpatterns/expr/qtruthpredicate_p.h | 26 +++--- src/xmlpatterns/expr/qunaryexpression.cpp | 26 +++--- src/xmlpatterns/expr/qunaryexpression_p.h | 26 +++--- src/xmlpatterns/expr/qunlimitedcontainer.cpp | 26 +++--- src/xmlpatterns/expr/qunlimitedcontainer_p.h | 26 +++--- .../expr/qunresolvedvariablereference.cpp | 26 +++--- .../expr/qunresolvedvariablereference_p.h | 26 +++--- src/xmlpatterns/expr/quserfunction.cpp | 26 +++--- src/xmlpatterns/expr/quserfunction_p.h | 26 +++--- src/xmlpatterns/expr/quserfunctioncallsite.cpp | 26 +++--- src/xmlpatterns/expr/quserfunctioncallsite_p.h | 26 +++--- src/xmlpatterns/expr/qvalidate.cpp | 26 +++--- src/xmlpatterns/expr/qvalidate_p.h | 26 +++--- src/xmlpatterns/expr/qvaluecomparison.cpp | 26 +++--- src/xmlpatterns/expr/qvaluecomparison_p.h | 26 +++--- src/xmlpatterns/expr/qvariabledeclaration.cpp | 26 +++--- src/xmlpatterns/expr/qvariabledeclaration_p.h | 26 +++--- src/xmlpatterns/expr/qvariablereference.cpp | 26 +++--- src/xmlpatterns/expr/qvariablereference_p.h | 26 +++--- src/xmlpatterns/expr/qwithparam_p.h | 26 +++--- .../expr/qxsltsimplecontentconstructor.cpp | 26 +++--- .../expr/qxsltsimplecontentconstructor_p.h | 26 +++--- .../functions/qabstractfunctionfactory.cpp | 26 +++--- .../functions/qabstractfunctionfactory_p.h | 26 +++--- src/xmlpatterns/functions/qaccessorfns.cpp | 26 +++--- src/xmlpatterns/functions/qaccessorfns_p.h | 26 +++--- src/xmlpatterns/functions/qaggregatefns.cpp | 26 +++--- src/xmlpatterns/functions/qaggregatefns_p.h | 26 +++--- src/xmlpatterns/functions/qaggregator.cpp | 26 +++--- src/xmlpatterns/functions/qaggregator_p.h | 26 +++--- src/xmlpatterns/functions/qassemblestringfns.cpp | 26 +++--- src/xmlpatterns/functions/qassemblestringfns_p.h | 26 +++--- src/xmlpatterns/functions/qbooleanfns.cpp | 26 +++--- src/xmlpatterns/functions/qbooleanfns_p.h | 26 +++--- src/xmlpatterns/functions/qcomparescaseaware.cpp | 26 +++--- src/xmlpatterns/functions/qcomparescaseaware_p.h | 26 +++--- src/xmlpatterns/functions/qcomparestringfns.cpp | 26 +++--- src/xmlpatterns/functions/qcomparestringfns_p.h | 26 +++--- src/xmlpatterns/functions/qcomparingaggregator.cpp | 26 +++--- src/xmlpatterns/functions/qcomparingaggregator_p.h | 26 +++--- .../functions/qconstructorfunctionsfactory.cpp | 26 +++--- .../functions/qconstructorfunctionsfactory_p.h | 26 +++--- src/xmlpatterns/functions/qcontextfns.cpp | 26 +++--- src/xmlpatterns/functions/qcontextfns_p.h | 26 +++--- src/xmlpatterns/functions/qcontextnodechecker.cpp | 26 +++--- src/xmlpatterns/functions/qcontextnodechecker_p.h | 26 +++--- src/xmlpatterns/functions/qcurrentfn.cpp | 26 +++--- src/xmlpatterns/functions/qcurrentfn_p.h | 26 +++--- src/xmlpatterns/functions/qdatetimefn.cpp | 26 +++--- src/xmlpatterns/functions/qdatetimefn_p.h | 26 +++--- src/xmlpatterns/functions/qdatetimefns.cpp | 26 +++--- src/xmlpatterns/functions/qdatetimefns_p.h | 26 +++--- src/xmlpatterns/functions/qdeepequalfn.cpp | 26 +++--- src/xmlpatterns/functions/qdeepequalfn_p.h | 26 +++--- src/xmlpatterns/functions/qdocumentfn.cpp | 26 +++--- src/xmlpatterns/functions/qdocumentfn_p.h | 26 +++--- src/xmlpatterns/functions/qelementavailablefn.cpp | 26 +++--- src/xmlpatterns/functions/qelementavailablefn_p.h | 26 +++--- src/xmlpatterns/functions/qerrorfn.cpp | 26 +++--- src/xmlpatterns/functions/qerrorfn_p.h | 26 +++--- src/xmlpatterns/functions/qfunctionargument.cpp | 26 +++--- src/xmlpatterns/functions/qfunctionargument_p.h | 26 +++--- src/xmlpatterns/functions/qfunctionavailablefn.cpp | 26 +++--- src/xmlpatterns/functions/qfunctionavailablefn_p.h | 26 +++--- src/xmlpatterns/functions/qfunctioncall.cpp | 26 +++--- src/xmlpatterns/functions/qfunctioncall_p.h | 26 +++--- src/xmlpatterns/functions/qfunctionfactory.cpp | 26 +++--- src/xmlpatterns/functions/qfunctionfactory_p.h | 26 +++--- .../functions/qfunctionfactorycollection.cpp | 26 +++--- .../functions/qfunctionfactorycollection_p.h | 26 +++--- src/xmlpatterns/functions/qfunctionsignature.cpp | 26 +++--- src/xmlpatterns/functions/qfunctionsignature_p.h | 26 +++--- src/xmlpatterns/functions/qgenerateidfn.cpp | 26 +++--- src/xmlpatterns/functions/qgenerateidfn_p.h | 26 +++--- src/xmlpatterns/functions/qnodefns.cpp | 26 +++--- src/xmlpatterns/functions/qnodefns_p.h | 26 +++--- src/xmlpatterns/functions/qnumericfns.cpp | 26 +++--- src/xmlpatterns/functions/qnumericfns_p.h | 26 +++--- src/xmlpatterns/functions/qpatternmatchingfns.cpp | 26 +++--- src/xmlpatterns/functions/qpatternmatchingfns_p.h | 26 +++--- src/xmlpatterns/functions/qpatternplatform.cpp | 26 +++--- src/xmlpatterns/functions/qpatternplatform_p.h | 26 +++--- src/xmlpatterns/functions/qqnamefns.cpp | 26 +++--- src/xmlpatterns/functions/qqnamefns_p.h | 26 +++--- src/xmlpatterns/functions/qresolveurifn.cpp | 26 +++--- src/xmlpatterns/functions/qresolveurifn_p.h | 26 +++--- src/xmlpatterns/functions/qsequencefns.cpp | 26 +++--- src/xmlpatterns/functions/qsequencefns_p.h | 26 +++--- .../functions/qsequencegeneratingfns.cpp | 26 +++--- .../functions/qsequencegeneratingfns_p.h | 26 +++--- .../functions/qstaticbaseuricontainer_p.h | 26 +++--- .../functions/qstaticnamespacescontainer.cpp | 26 +++--- .../functions/qstaticnamespacescontainer_p.h | 26 +++--- src/xmlpatterns/functions/qstringvaluefns.cpp | 26 +++--- src/xmlpatterns/functions/qstringvaluefns_p.h | 26 +++--- src/xmlpatterns/functions/qsubstringfns.cpp | 26 +++--- src/xmlpatterns/functions/qsubstringfns_p.h | 26 +++--- src/xmlpatterns/functions/qsystempropertyfn.cpp | 26 +++--- src/xmlpatterns/functions/qsystempropertyfn_p.h | 26 +++--- src/xmlpatterns/functions/qtimezonefns.cpp | 26 +++--- src/xmlpatterns/functions/qtimezonefns_p.h | 26 +++--- src/xmlpatterns/functions/qtracefn.cpp | 26 +++--- src/xmlpatterns/functions/qtracefn_p.h | 26 +++--- src/xmlpatterns/functions/qtypeavailablefn.cpp | 26 +++--- src/xmlpatterns/functions/qtypeavailablefn_p.h | 26 +++--- .../functions/qunparsedentitypublicidfn.cpp | 26 +++--- .../functions/qunparsedentitypublicidfn_p.h | 26 +++--- src/xmlpatterns/functions/qunparsedentityurifn.cpp | 26 +++--- src/xmlpatterns/functions/qunparsedentityurifn_p.h | 26 +++--- .../functions/qunparsedtextavailablefn.cpp | 26 +++--- .../functions/qunparsedtextavailablefn_p.h | 26 +++--- src/xmlpatterns/functions/qunparsedtextfn.cpp | 26 +++--- src/xmlpatterns/functions/qunparsedtextfn_p.h | 26 +++--- .../functions/qxpath10corefunctions.cpp | 26 +++--- .../functions/qxpath10corefunctions_p.h | 26 +++--- .../functions/qxpath20corefunctions.cpp | 26 +++--- .../functions/qxpath20corefunctions_p.h | 26 +++--- src/xmlpatterns/functions/qxslt20corefunctions.cpp | 26 +++--- src/xmlpatterns/functions/qxslt20corefunctions_p.h | 26 +++--- src/xmlpatterns/iterators/qcachingiterator.cpp | 26 +++--- src/xmlpatterns/iterators/qcachingiterator_p.h | 26 +++--- src/xmlpatterns/iterators/qdeduplicateiterator.cpp | 26 +++--- src/xmlpatterns/iterators/qdeduplicateiterator_p.h | 26 +++--- src/xmlpatterns/iterators/qdistinctiterator.cpp | 26 +++--- src/xmlpatterns/iterators/qdistinctiterator_p.h | 26 +++--- src/xmlpatterns/iterators/qemptyiterator_p.h | 26 +++--- src/xmlpatterns/iterators/qexceptiterator.cpp | 26 +++--- src/xmlpatterns/iterators/qexceptiterator_p.h | 26 +++--- src/xmlpatterns/iterators/qindexofiterator.cpp | 26 +++--- src/xmlpatterns/iterators/qindexofiterator_p.h | 26 +++--- src/xmlpatterns/iterators/qinsertioniterator.cpp | 26 +++--- src/xmlpatterns/iterators/qinsertioniterator_p.h | 26 +++--- src/xmlpatterns/iterators/qintersectiterator.cpp | 26 +++--- src/xmlpatterns/iterators/qintersectiterator_p.h | 26 +++--- src/xmlpatterns/iterators/qitemmappingiterator_p.h | 26 +++--- src/xmlpatterns/iterators/qrangeiterator.cpp | 26 +++--- src/xmlpatterns/iterators/qrangeiterator_p.h | 26 +++--- src/xmlpatterns/iterators/qremovaliterator.cpp | 26 +++--- src/xmlpatterns/iterators/qremovaliterator_p.h | 26 +++--- .../iterators/qsequencemappingiterator_p.h | 26 +++--- src/xmlpatterns/iterators/qsingletoniterator_p.h | 26 +++--- src/xmlpatterns/iterators/qsubsequenceiterator.cpp | 26 +++--- src/xmlpatterns/iterators/qsubsequenceiterator_p.h | 26 +++--- .../iterators/qtocodepointsiterator.cpp | 26 +++--- .../iterators/qtocodepointsiterator_p.h | 26 +++--- src/xmlpatterns/iterators/qunioniterator.cpp | 26 +++--- src/xmlpatterns/iterators/qunioniterator_p.h | 26 +++--- src/xmlpatterns/janitors/qargumentconverter.cpp | 26 +++--- src/xmlpatterns/janitors/qargumentconverter_p.h | 26 +++--- src/xmlpatterns/janitors/qatomizer.cpp | 26 +++--- src/xmlpatterns/janitors/qatomizer_p.h | 26 +++--- src/xmlpatterns/janitors/qcardinalityverifier.cpp | 26 +++--- src/xmlpatterns/janitors/qcardinalityverifier_p.h | 26 +++--- src/xmlpatterns/janitors/qebvextractor.cpp | 26 +++--- src/xmlpatterns/janitors/qebvextractor_p.h | 26 +++--- src/xmlpatterns/janitors/qitemverifier.cpp | 26 +++--- src/xmlpatterns/janitors/qitemverifier_p.h | 26 +++--- .../janitors/quntypedatomicconverter.cpp | 26 +++--- .../janitors/quntypedatomicconverter_p.h | 26 +++--- src/xmlpatterns/parser/TokenLookup.gperf | 26 +++--- src/xmlpatterns/parser/qmaintainingreader.cpp | 26 +++--- src/xmlpatterns/parser/qmaintainingreader_p.h | 26 +++--- src/xmlpatterns/parser/qparsercontext.cpp | 26 +++--- src/xmlpatterns/parser/qparsercontext_p.h | 26 +++--- src/xmlpatterns/parser/qquerytransformparser.cpp | 26 +++--- src/xmlpatterns/parser/qquerytransformparser_p.h | 26 +++--- src/xmlpatterns/parser/qtokenizer_p.h | 26 +++--- src/xmlpatterns/parser/qtokenrevealer.cpp | 26 +++--- src/xmlpatterns/parser/qtokenrevealer_p.h | 26 +++--- src/xmlpatterns/parser/qtokensource.cpp | 26 +++--- src/xmlpatterns/parser/qtokensource_p.h | 26 +++--- src/xmlpatterns/parser/querytransformparser.ypp | 52 ++++++------ src/xmlpatterns/parser/qxquerytokenizer.cpp | 26 +++--- src/xmlpatterns/parser/qxquerytokenizer_p.h | 26 +++--- src/xmlpatterns/parser/qxslttokenizer.cpp | 26 +++--- src/xmlpatterns/parser/qxslttokenizer_p.h | 26 +++--- src/xmlpatterns/parser/qxslttokenlookup.cpp | 26 +++--- src/xmlpatterns/parser/qxslttokenlookup.xml | 26 +++--- src/xmlpatterns/parser/qxslttokenlookup_p.h | 26 +++--- src/xmlpatterns/parser/trolltechHeader.txt | 26 +++--- src/xmlpatterns/projection/qdocumentprojector.cpp | 26 +++--- src/xmlpatterns/projection/qdocumentprojector_p.h | 26 +++--- .../projection/qprojectedexpression_p.h | 26 +++--- src/xmlpatterns/qtokenautomaton/exampleFile.xml | 26 +++--- src/xmlpatterns/type/qabstractnodetest.cpp | 26 +++--- src/xmlpatterns/type/qabstractnodetest_p.h | 26 +++--- src/xmlpatterns/type/qanyitemtype.cpp | 26 +++--- src/xmlpatterns/type/qanyitemtype_p.h | 26 +++--- src/xmlpatterns/type/qanynodetype.cpp | 26 +++--- src/xmlpatterns/type/qanynodetype_p.h | 26 +++--- src/xmlpatterns/type/qanysimpletype.cpp | 26 +++--- src/xmlpatterns/type/qanysimpletype_p.h | 26 +++--- src/xmlpatterns/type/qanytype.cpp | 26 +++--- src/xmlpatterns/type/qanytype_p.h | 26 +++--- src/xmlpatterns/type/qatomiccasterlocator.cpp | 26 +++--- src/xmlpatterns/type/qatomiccasterlocator_p.h | 26 +++--- src/xmlpatterns/type/qatomiccasterlocators.cpp | 26 +++--- src/xmlpatterns/type/qatomiccasterlocators_p.h | 26 +++--- src/xmlpatterns/type/qatomiccomparatorlocator.cpp | 26 +++--- src/xmlpatterns/type/qatomiccomparatorlocator_p.h | 26 +++--- src/xmlpatterns/type/qatomiccomparatorlocators.cpp | 26 +++--- src/xmlpatterns/type/qatomiccomparatorlocators_p.h | 26 +++--- .../type/qatomicmathematicianlocator.cpp | 26 +++--- .../type/qatomicmathematicianlocator_p.h | 26 +++--- .../type/qatomicmathematicianlocators.cpp | 26 +++--- .../type/qatomicmathematicianlocators_p.h | 26 +++--- src/xmlpatterns/type/qatomictype.cpp | 26 +++--- src/xmlpatterns/type/qatomictype_p.h | 26 +++--- src/xmlpatterns/type/qatomictypedispatch_p.h | 26 +++--- src/xmlpatterns/type/qbasictypesfactory.cpp | 26 +++--- src/xmlpatterns/type/qbasictypesfactory_p.h | 26 +++--- src/xmlpatterns/type/qbuiltinatomictype.cpp | 26 +++--- src/xmlpatterns/type/qbuiltinatomictype_p.h | 26 +++--- src/xmlpatterns/type/qbuiltinatomictypes.cpp | 26 +++--- src/xmlpatterns/type/qbuiltinatomictypes_p.h | 26 +++--- src/xmlpatterns/type/qbuiltinnodetype.cpp | 26 +++--- src/xmlpatterns/type/qbuiltinnodetype_p.h | 26 +++--- src/xmlpatterns/type/qbuiltintypes.cpp | 26 +++--- src/xmlpatterns/type/qbuiltintypes_p.h | 26 +++--- src/xmlpatterns/type/qcardinality.cpp | 26 +++--- src/xmlpatterns/type/qcardinality_p.h | 26 +++--- src/xmlpatterns/type/qcommonsequencetypes.cpp | 26 +++--- src/xmlpatterns/type/qcommonsequencetypes_p.h | 26 +++--- src/xmlpatterns/type/qebvtype.cpp | 26 +++--- src/xmlpatterns/type/qebvtype_p.h | 26 +++--- src/xmlpatterns/type/qemptysequencetype.cpp | 26 +++--- src/xmlpatterns/type/qemptysequencetype_p.h | 26 +++--- src/xmlpatterns/type/qgenericsequencetype.cpp | 26 +++--- src/xmlpatterns/type/qgenericsequencetype_p.h | 26 +++--- src/xmlpatterns/type/qitemtype.cpp | 26 +++--- src/xmlpatterns/type/qitemtype_p.h | 26 +++--- src/xmlpatterns/type/qlocalnametest.cpp | 26 +++--- src/xmlpatterns/type/qlocalnametest_p.h | 26 +++--- src/xmlpatterns/type/qmultiitemtype.cpp | 26 +++--- src/xmlpatterns/type/qmultiitemtype_p.h | 26 +++--- src/xmlpatterns/type/qnamespacenametest.cpp | 26 +++--- src/xmlpatterns/type/qnamespacenametest_p.h | 26 +++--- src/xmlpatterns/type/qnonetype.cpp | 26 +++--- src/xmlpatterns/type/qnonetype_p.h | 26 +++--- src/xmlpatterns/type/qnumerictype.cpp | 26 +++--- src/xmlpatterns/type/qnumerictype_p.h | 26 +++--- src/xmlpatterns/type/qprimitives_p.h | 26 +++--- src/xmlpatterns/type/qqnametest.cpp | 26 +++--- src/xmlpatterns/type/qqnametest_p.h | 26 +++--- src/xmlpatterns/type/qschemacomponent.cpp | 26 +++--- src/xmlpatterns/type/qschemacomponent_p.h | 26 +++--- src/xmlpatterns/type/qschematype.cpp | 26 +++--- src/xmlpatterns/type/qschematype_p.h | 26 +++--- src/xmlpatterns/type/qschematypefactory.cpp | 26 +++--- src/xmlpatterns/type/qschematypefactory_p.h | 26 +++--- src/xmlpatterns/type/qsequencetype.cpp | 26 +++--- src/xmlpatterns/type/qsequencetype_p.h | 26 +++--- src/xmlpatterns/type/qtypechecker.cpp | 26 +++--- src/xmlpatterns/type/qtypechecker_p.h | 26 +++--- src/xmlpatterns/type/quntyped.cpp | 26 +++--- src/xmlpatterns/type/quntyped_p.h | 26 +++--- src/xmlpatterns/type/qxsltnodetest.cpp | 26 +++--- src/xmlpatterns/type/qxsltnodetest_p.h | 26 +++--- src/xmlpatterns/utils/qautoptr.cpp | 26 +++--- src/xmlpatterns/utils/qautoptr_p.h | 26 +++--- src/xmlpatterns/utils/qcommonnamespaces_p.h | 26 +++--- src/xmlpatterns/utils/qcppcastinghelper_p.h | 26 +++--- src/xmlpatterns/utils/qdebug_p.h | 26 +++--- .../utils/qdelegatingnamespaceresolver.cpp | 26 +++--- .../utils/qdelegatingnamespaceresolver_p.h | 26 +++--- .../utils/qgenericnamespaceresolver.cpp | 26 +++--- .../utils/qgenericnamespaceresolver_p.h | 26 +++--- src/xmlpatterns/utils/qnamepool.cpp | 26 +++--- src/xmlpatterns/utils/qnamepool_p.h | 26 +++--- src/xmlpatterns/utils/qnamespacebinding_p.h | 26 +++--- src/xmlpatterns/utils/qnamespaceresolver.cpp | 26 +++--- src/xmlpatterns/utils/qnamespaceresolver_p.h | 26 +++--- src/xmlpatterns/utils/qnodenamespaceresolver.cpp | 26 +++--- src/xmlpatterns/utils/qnodenamespaceresolver_p.h | 26 +++--- src/xmlpatterns/utils/qoutputvalidator.cpp | 26 +++--- src/xmlpatterns/utils/qoutputvalidator_p.h | 26 +++--- src/xmlpatterns/utils/qpatternistlocale.cpp | 26 +++--- src/xmlpatterns/utils/qpatternistlocale_p.h | 26 +++--- src/xmlpatterns/utils/qxpathhelper.cpp | 26 +++--- src/xmlpatterns/utils/qxpathhelper_p.h | 26 +++--- tests/arthur/common/framework.cpp | 26 +++--- tests/arthur/common/framework.h | 26 +++--- tests/arthur/common/paintcommands.cpp | 26 +++--- tests/arthur/common/paintcommands.h | 26 +++--- tests/arthur/common/qengines.cpp | 26 +++--- tests/arthur/common/qengines.h | 26 +++--- tests/arthur/common/xmldata.cpp | 26 +++--- tests/arthur/common/xmldata.h | 26 +++--- tests/arthur/datagenerator/datagenerator.cpp | 26 +++--- tests/arthur/datagenerator/datagenerator.h | 26 +++--- tests/arthur/datagenerator/main.cpp | 26 +++--- tests/arthur/datagenerator/xmlgenerator.cpp | 26 +++--- tests/arthur/datagenerator/xmlgenerator.h | 26 +++--- tests/arthur/htmlgenerator/htmlgenerator.cpp | 26 +++--- tests/arthur/htmlgenerator/htmlgenerator.h | 26 +++--- tests/arthur/htmlgenerator/main.cpp | 26 +++--- tests/arthur/lance/interactivewidget.cpp | 26 +++--- tests/arthur/lance/interactivewidget.h | 26 +++--- tests/arthur/lance/main.cpp | 26 +++--- tests/arthur/lance/widgets.h | 26 +++--- tests/arthur/performancediff/main.cpp | 26 +++--- tests/arthur/performancediff/performancediff.cpp | 26 +++--- tests/arthur/performancediff/performancediff.h | 26 +++--- tests/arthur/shower/main.cpp | 26 +++--- tests/arthur/shower/shower.cpp | 26 +++--- tests/arthur/shower/shower.h | 26 +++--- tests/auto/atwrapper/atWrapper.cpp | 26 +++--- tests/auto/atwrapper/atWrapper.h | 26 +++--- tests/auto/atwrapper/atWrapperAutotest.cpp | 26 +++--- tests/auto/bic/qbic.cpp | 26 +++--- tests/auto/bic/qbic.h | 26 +++--- tests/auto/bic/tst_bic.cpp | 26 +++--- tests/auto/checkxmlfiles/tst_checkxmlfiles.cpp | 26 +++--- tests/auto/collections/tst_collections.cpp | 26 +++--- tests/auto/compiler/baseclass.cpp | 26 +++--- tests/auto/compiler/baseclass.h | 26 +++--- tests/auto/compiler/derivedclass.cpp | 26 +++--- tests/auto/compiler/derivedclass.h | 26 +++--- tests/auto/compiler/tst_compiler.cpp | 26 +++--- tests/auto/compilerwarnings/test.cpp | 26 +++--- .../auto/compilerwarnings/tst_compilerwarnings.cpp | 26 +++--- tests/auto/exceptionsafety/tst_exceptionsafety.cpp | 26 +++--- tests/auto/headers/tst_headers.cpp | 26 +++--- tests/auto/languagechange/tst_languagechange.cpp | 26 +++--- tests/auto/linguist/lconvert/tst_lconvert.cpp | 26 +++--- tests/auto/linguist/lrelease/tst_lrelease.cpp | 26 +++--- .../lupdate/testdata/good/backslashes/src/main.cpp | 26 +++--- .../lupdate/testdata/good/codecforsrc/main.cpp | 26 +++--- .../lupdate/testdata/good/codecfortr/main.cpp | 26 +++--- .../lupdate/testdata/good/codecfortr1/main.cpp | 26 +++--- .../lupdate/testdata/good/codecfortr2/main.cpp | 26 +++--- .../lupdate/testdata/good/lacksqobject/main.cpp | 26 +++--- .../lupdate/testdata/good/merge_ordering/foo.cpp | 26 +++--- .../testdata/good/merge_whitespace/main.cpp | 26 +++--- .../lupdate/testdata/good/mergecpp/finddialog.cpp | 26 +++--- .../good/mergecpp_noobsolete/finddialog.cpp | 26 +++--- .../testdata/good/mergecpp_obsolete/finddialog.cpp | 26 +++--- .../good/multiple_locations/finddialog.cpp | 26 +++--- .../testdata/good/multiple_locations/main.cpp | 26 +++--- .../lupdate/testdata/good/namespaces/main.cpp | 26 +++--- .../testdata/good/parse_special_chars/main.cpp | 26 +++--- .../lupdate/testdata/good/parsecontexts/main.cpp | 26 +++--- .../lupdate/testdata/good/parsecpp/finddialog.cpp | 26 +++--- .../lupdate/testdata/good/parsecpp/main.cpp | 26 +++--- .../lupdate/testdata/good/parsejava/main.java | 26 +++--- .../linguist/lupdate/testdata/good/prefix/main.cpp | 26 +++--- .../lupdate/testdata/good/preprocess/main.cpp | 26 +++--- .../lupdate/testdata/good/proparsing/main.cpp | 26 +++--- .../lupdate/testdata/good/proparsing/main_mac.cpp | 26 +++--- .../lupdate/testdata/good/proparsing/main_unix.cpp | 26 +++--- .../lupdate/testdata/good/proparsing/main_win.cpp | 26 +++--- .../vpaths/dependpath/main_dependpath.cpp | 26 +++--- .../testdata/good/proparsing/wildcard/main1.cpp | 26 +++--- .../testdata/good/proparsing/wildcard/mainfile.cpp | 26 +++--- .../lupdate/testdata/good/proparsing/wildcard1.cpp | 26 +++--- .../testdata/good/proparsing/wildcard99.cpp | 26 +++--- .../linguist/lupdate/testdata/good/proparsing2/a | 26 +++--- .../lupdate/testdata/good/proparsing2/a.cpp | 26 +++--- .../linguist/lupdate/testdata/good/proparsing2/b | 26 +++--- .../lupdate/testdata/good/proparsing2/b.cpp | 26 +++--- .../linguist/lupdate/testdata/good/proparsing2/e | 26 +++--- .../lupdate/testdata/good/proparsing2/f/g.cpp | 26 +++--- .../lupdate/testdata/good/proparsing2/spaces/z | 26 +++--- .../testdata/good/proparsing2/variable_with_spaces | 26 +++--- .../lupdate/testdata/good/proparsing2/with | 26 +++--- .../linguist/lupdate/testdata/good/proparsing2/x/d | 26 +++--- .../lupdate/testdata/good/proparsing2/x/variable | 26 +++--- .../testdata/good/proparsingpaths/file1.cpp | 26 +++--- .../testdata/good/proparsingpaths/filter.cpp | 26 +++--- .../testdata/good/proparsingpaths/sub/subfile1.cpp | 26 +++--- .../good/proparsingpaths/sub/subfilter.cpp | 26 +++--- .../testdata/good/proparsingpri/common/main.cpp | 26 +++--- .../testdata/good/proparsingpri/mac/main_mac.cpp | 26 +++--- .../good/proparsingpri/relativity/relativity.cpp | 26 +++--- .../testdata/good/proparsingpri/unix/main_unix.cpp | 26 +++--- .../testdata/good/proparsingpri/win/main_win.cpp | 26 +++--- .../testdata/good/proparsingsubdirs/sub1/main.cpp | 26 +++--- .../testdata/good/proparsingsubs/common/main.cpp | 26 +++--- .../testdata/good/proparsingsubs/mac/main_mac.cpp | 26 +++--- .../good/proparsingsubs/unix/main_unix.cpp | 26 +++--- .../testdata/good/proparsingsubs/win/main_win.cpp | 26 +++--- .../output_ts/toplevel/library/tools/main.cpp | 26 +++--- .../lupdate/testdata/recursivescan/main.cpp | 26 +++--- .../lupdate/testdata/recursivescan/project.ui | 26 +++--- .../testdata/recursivescan/sub/filetypes/main.c++ | 26 +++--- .../testdata/recursivescan/sub/filetypes/main.cpp | 26 +++--- .../testdata/recursivescan/sub/filetypes/main.cxx | 26 +++--- .../testdata/recursivescan/sub/finddialog.cpp | 26 +++--- tests/auto/linguist/lupdate/testlupdate.cpp | 26 +++--- tests/auto/linguist/lupdate/testlupdate.h | 26 +++--- tests/auto/linguist/lupdate/tst_lupdate.cpp | 26 +++--- tests/auto/macgui/guitest.cpp | 26 +++--- tests/auto/macgui/guitest.h | 26 +++--- tests/auto/macgui/tst_macgui.cpp | 26 +++--- tests/auto/macplist/app/main.cpp | 26 +++--- tests/auto/macplist/tst_macplist.cpp | 26 +++--- tests/auto/mediaobject/qtesthelper.h | 26 +++--- tests/auto/mediaobject/tst_mediaobject.cpp | 26 +++--- tests/auto/mediaobject_wince_ds9/dummy.cpp | 26 +++--- .../moc/Test.framework/Headers/testinterface.h | 26 +++--- tests/auto/moc/assign-namespace.h | 26 +++--- tests/auto/moc/backslash-newlines.h | 26 +++--- tests/auto/moc/c-comments.h | 26 +++--- tests/auto/moc/cstyle-enums.h | 26 +++--- tests/auto/moc/dir-in-include-path.h | 26 +++--- tests/auto/moc/escapes-in-string-literals.h | 26 +++--- tests/auto/moc/extraqualification.h | 26 +++--- tests/auto/moc/forgotten-qinterface.h | 26 +++--- tests/auto/moc/gadgetwithnoenums.h | 26 +++--- tests/auto/moc/interface-from-framework.h | 26 +++--- tests/auto/moc/macro-on-cmdline.h | 26 +++--- tests/auto/moc/namespaced-flags.h | 26 +++--- tests/auto/moc/no-keywords.h | 26 +++--- tests/auto/moc/oldstyle-casts.h | 26 +++--- tests/auto/moc/os9-newlines.h | 2 +- tests/auto/moc/parse-boost.h | 26 +++--- tests/auto/moc/pure-virtual-signals.h | 26 +++--- tests/auto/moc/qinvokable.h | 26 +++--- tests/auto/moc/qprivateslots.h | 26 +++--- tests/auto/moc/single_function_keyword.h | 26 +++--- tests/auto/moc/slots-with-void-template.h | 26 +++--- tests/auto/moc/task189996.h | 26 +++--- tests/auto/moc/task192552.h | 26 +++--- tests/auto/moc/task234909.h | 26 +++--- tests/auto/moc/task240368.h | 26 +++--- tests/auto/moc/task87883.h | 26 +++--- tests/auto/moc/template-gtgt.h | 26 +++--- tests/auto/moc/testproject/Plugin/Plugin.h | 26 +++--- tests/auto/moc/trigraphs.h | 26 +++--- tests/auto/moc/tst_moc.cpp | 26 +++--- tests/auto/moc/using-namespaces.h | 26 +++--- .../auto/moc/warn-on-multiple-qobject-subclasses.h | 26 +++--- tests/auto/moc/warn-on-property-without-read.h | 26 +++--- tests/auto/moc/win-newlines.h | 26 +++--- tests/auto/modeltest/modeltest.cpp | 26 +++--- tests/auto/modeltest/modeltest.h | 26 +++--- tests/auto/modeltest/tst_modeltest.cpp | 26 +++--- tests/auto/network-settings.h | 26 +++--- tests/auto/networkselftest/tst_networkselftest.cpp | 26 +++--- .../tst_patternistexamplefiletree.cpp | 26 +++--- .../patternistexamples/tst_patternistexamples.cpp | 26 +++--- .../patternistheaders/tst_patternistheaders.cpp | 26 +++--- tests/auto/q3accel/tst_q3accel.cpp | 26 +++--- tests/auto/q3action/tst_q3action.cpp | 26 +++--- tests/auto/q3actiongroup/tst_q3actiongroup.cpp | 26 +++--- tests/auto/q3buttongroup/clickLock/main.cpp | 26 +++--- tests/auto/q3buttongroup/tst_q3buttongroup.cpp | 26 +++--- tests/auto/q3canvas/tst_q3canvas.cpp | 26 +++--- tests/auto/q3checklistitem/tst_q3checklistitem.cpp | 26 +++--- tests/auto/q3combobox/tst_q3combobox.cpp | 26 +++--- tests/auto/q3cstring/tst_q3cstring.cpp | 26 +++--- tests/auto/q3databrowser/tst_q3databrowser.cpp | 26 +++--- tests/auto/q3dateedit/tst_q3dateedit.cpp | 26 +++--- tests/auto/q3datetimeedit/tst_q3datetimeedit.cpp | 26 +++--- tests/auto/q3deepcopy/tst_q3deepcopy.cpp | 26 +++--- tests/auto/q3dict/tst_q3dict.cpp | 26 +++--- tests/auto/q3dns/tst_q3dns.cpp | 26 +++--- tests/auto/q3dockwindow/tst_q3dockwindow.cpp | 26 +++--- tests/auto/q3filedialog/tst_q3filedialog.cpp | 26 +++--- tests/auto/q3frame/tst_q3frame.cpp | 26 +++--- tests/auto/q3groupbox/tst_q3groupbox.cpp | 26 +++--- tests/auto/q3hbox/tst_q3hbox.cpp | 26 +++--- tests/auto/q3header/tst_q3header.cpp | 26 +++--- tests/auto/q3iconview/tst_q3iconview.cpp | 26 +++--- tests/auto/q3listbox/tst_qlistbox.cpp | 26 +++--- tests/auto/q3listview/tst_q3listview.cpp | 26 +++--- .../tst_q3listviewitemiterator.cpp | 26 +++--- tests/auto/q3mainwindow/tst_q3mainwindow.cpp | 26 +++--- tests/auto/q3popupmenu/tst_q3popupmenu.cpp | 26 +++--- tests/auto/q3process/cat/main.cpp | 26 +++--- tests/auto/q3process/echo/main.cpp | 26 +++--- tests/auto/q3process/tst_q3process.cpp | 26 +++--- tests/auto/q3progressbar/tst_q3progressbar.cpp | 26 +++--- .../auto/q3progressdialog/tst_q3progressdialog.cpp | 26 +++--- tests/auto/q3ptrlist/tst_q3ptrlist.cpp | 26 +++--- tests/auto/q3richtext/tst_q3richtext.cpp | 26 +++--- tests/auto/q3scrollview/tst_qscrollview.cpp | 26 +++--- tests/auto/q3semaphore/tst_q3semaphore.cpp | 26 +++--- tests/auto/q3serversocket/tst_q3serversocket.cpp | 26 +++--- tests/auto/q3socket/tst_qsocket.cpp | 26 +++--- tests/auto/q3socketdevice/tst_q3socketdevice.cpp | 26 +++--- tests/auto/q3sqlcursor/tst_q3sqlcursor.cpp | 26 +++--- .../q3sqlselectcursor/tst_q3sqlselectcursor.cpp | 26 +++--- tests/auto/q3stylesheet/tst_q3stylesheet.cpp | 26 +++--- tests/auto/q3tabdialog/tst_q3tabdialog.cpp | 26 +++--- tests/auto/q3table/tst_q3table.cpp | 26 +++--- tests/auto/q3textbrowser/tst_q3textbrowser.cpp | 26 +++--- tests/auto/q3textedit/tst_q3textedit.cpp | 26 +++--- tests/auto/q3textstream/tst_q3textstream.cpp | 26 +++--- tests/auto/q3timeedit/tst_q3timeedit.cpp | 26 +++--- tests/auto/q3toolbar/tst_q3toolbar.cpp | 26 +++--- tests/auto/q3uridrag/tst_q3uridrag.cpp | 26 +++--- tests/auto/q3urloperator/tst_q3urloperator.cpp | 26 +++--- tests/auto/q3valuelist/tst_q3valuelist.cpp | 26 +++--- tests/auto/q3valuevector/tst_q3valuevector.cpp | 26 +++--- tests/auto/q3widgetstack/tst_q3widgetstack.cpp | 26 +++--- tests/auto/q_func_info/tst_q_func_info.cpp | 26 +++--- tests/auto/qabstractbutton/tst_qabstractbutton.cpp | 26 +++--- .../qabstractitemmodel/tst_qabstractitemmodel.cpp | 26 +++--- .../qabstractitemview/tst_qabstractitemview.cpp | 26 +++--- .../tst_qabstractmessagehandler.cpp | 26 +++--- .../tst_qabstractnetworkcache.cpp | 26 +++--- .../tst_qabstractprintdialog.cpp | 26 +++--- .../tst_qabstractproxymodel.cpp | 26 +++--- .../tst_qabstractscrollarea.cpp | 26 +++--- tests/auto/qabstractslider/tst_qabstractslider.cpp | 26 +++--- tests/auto/qabstractsocket/tst_qabstractsocket.cpp | 26 +++--- .../auto/qabstractspinbox/tst_qabstractspinbox.cpp | 26 +++--- .../tst_qabstracttextdocumentlayout.cpp | 26 +++--- tests/auto/qabstracturiresolver/TestURIResolver.h | 26 +++--- .../tst_qabstracturiresolver.cpp | 26 +++--- .../tst_qabstractxmlforwarditerator.cpp | 26 +++--- tests/auto/qabstractxmlnodemodel/LoadingModel.cpp | 26 +++--- tests/auto/qabstractxmlnodemodel/LoadingModel.h | 26 +++--- tests/auto/qabstractxmlnodemodel/TestNodeModel.h | 26 +++--- .../tst_qabstractxmlnodemodel.cpp | 26 +++--- .../qabstractxmlreceiver/TestAbstractXmlReceiver.h | 26 +++--- .../tst_qabstractxmlreceiver.cpp | 26 +++--- tests/auto/qaccessibility/tst_qaccessibility.cpp | 26 +++--- .../qaccessibility_mac/tst_qaccessibility_mac.cpp | 26 +++--- tests/auto/qaction/tst_qaction.cpp | 26 +++--- tests/auto/qactiongroup/tst_qactiongroup.cpp | 26 +++--- tests/auto/qalgorithms/tst_qalgorithms.cpp | 26 +++--- .../qapplication/desktopsettingsaware/main.cpp | 26 +++--- tests/auto/qapplication/tst_qapplication.cpp | 26 +++--- tests/auto/qapplication/wincmdline/main.cpp | 26 +++--- .../tst_qapplicationargumentparser.cpp | 26 +++--- tests/auto/qatomicint/tst_qatomicint.cpp | 26 +++--- tests/auto/qatomicpointer/tst_qatomicpointer.cpp | 26 +++--- tests/auto/qautoptr/tst_qautoptr.cpp | 26 +++--- tests/auto/qbitarray/tst_qbitarray.cpp | 26 +++--- tests/auto/qboxlayout/tst_qboxlayout.cpp | 26 +++--- tests/auto/qbrush/tst_qbrush.cpp | 26 +++--- tests/auto/qbuffer/tst_qbuffer.cpp | 26 +++--- tests/auto/qbuttongroup/tst_qbuttongroup.cpp | 26 +++--- tests/auto/qbytearray/tst_qbytearray.cpp | 26 +++--- .../qbytearraymatcher/tst_qbytearraymatcher.cpp | 26 +++--- tests/auto/qcache/tst_qcache.cpp | 26 +++--- tests/auto/qcalendarwidget/tst_qcalendarwidget.cpp | 26 +++--- tests/auto/qchar/tst_qchar.cpp | 26 +++--- tests/auto/qcheckbox/tst_qcheckbox.cpp | 26 +++--- tests/auto/qclipboard/copier/main.cpp | 26 +++--- tests/auto/qclipboard/paster/main.cpp | 26 +++--- tests/auto/qclipboard/tst_qclipboard.cpp | 26 +++--- tests/auto/qcolor/tst_qcolor.cpp | 26 +++--- tests/auto/qcolordialog/tst_qcolordialog.cpp | 26 +++--- tests/auto/qcolumnview/tst_qcolumnview.cpp | 26 +++--- tests/auto/qcombobox/tst_qcombobox.cpp | 26 +++--- .../qcommandlinkbutton/tst_qcommandlinkbutton.cpp | 26 +++--- tests/auto/qcompleter/tst_qcompleter.cpp | 26 +++--- tests/auto/qcomplextext/bidireorderstring.h | 26 +++--- tests/auto/qcomplextext/tst_qcomplextext.cpp | 26 +++--- tests/auto/qcopchannel/testSend/main.cpp | 26 +++--- tests/auto/qcopchannel/tst_qcopchannel.cpp | 26 +++--- .../auto/qcoreapplication/tst_qcoreapplication.cpp | 26 +++--- .../qcryptographichash/tst_qcryptographichash.cpp | 26 +++--- tests/auto/qcssparser/tst_qcssparser.cpp | 26 +++--- tests/auto/qdatastream/tst_qdatastream.cpp | 26 +++--- .../qdatawidgetmapper/tst_qdatawidgetmapper.cpp | 26 +++--- tests/auto/qdate/tst_qdate.cpp | 26 +++--- tests/auto/qdatetime/tst_qdatetime.cpp | 26 +++--- tests/auto/qdatetimeedit/tst_qdatetimeedit.cpp | 26 +++--- .../tst_qdbusabstractadaptor.cpp | 26 +++--- tests/auto/qdbusconnection/tst_qdbusconnection.cpp | 26 +++--- tests/auto/qdbuscontext/tst_qdbuscontext.cpp | 26 +++--- tests/auto/qdbusinterface/tst_qdbusinterface.cpp | 26 +++--- tests/auto/qdbuslocalcalls/tst_qdbuslocalcalls.cpp | 26 +++--- tests/auto/qdbusmarshall/common.h | 26 +++--- tests/auto/qdbusmarshall/dummy.cpp | 26 +++--- tests/auto/qdbusmarshall/qpong/qpong.cpp | 26 +++--- tests/auto/qdbusmarshall/tst_qdbusmarshall.cpp | 26 +++--- tests/auto/qdbusmetaobject/tst_qdbusmetaobject.cpp | 26 +++--- tests/auto/qdbusmetatype/tst_qdbusmetatype.cpp | 26 +++--- .../auto/qdbuspendingcall/tst_qdbuspendingcall.cpp | 26 +++--- .../qdbuspendingreply/tst_qdbuspendingreply.cpp | 26 +++--- tests/auto/qdbusperformance/server/server.cpp | 26 +++--- tests/auto/qdbusperformance/serverobject.h | 26 +++--- .../auto/qdbusperformance/tst_qdbusperformance.cpp | 26 +++--- tests/auto/qdbusreply/tst_qdbusreply.cpp | 26 +++--- tests/auto/qdbusserver/server.cpp | 26 +++--- tests/auto/qdbusserver/tst_qdbusserver.cpp | 26 +++--- tests/auto/qdbusthreading/tst_qdbusthreading.cpp | 26 +++--- tests/auto/qdbusxmlparser/tst_qdbusxmlparser.cpp | 26 +++--- tests/auto/qdebug/tst_qdebug.cpp | 26 +++--- .../auto/qdesktopservices/tst_qdesktopservices.cpp | 26 +++--- tests/auto/qdesktopwidget/tst_qdesktopwidget.cpp | 26 +++--- tests/auto/qdial/tst_qdial.cpp | 26 +++--- tests/auto/qdialog/tst_qdialog.cpp | 26 +++--- .../auto/qdialogbuttonbox/tst_qdialogbuttonbox.cpp | 26 +++--- tests/auto/qdir/testdir/dir/qrc_qdir.cpp | 26 +++--- tests/auto/qdir/testdir/dir/tst_qdir.cpp | 26 +++--- tests/auto/qdir/tst_qdir.cpp | 26 +++--- .../auto/qdirectpainter/runDirectPainter/main.cpp | 26 +++--- tests/auto/qdirectpainter/tst_qdirectpainter.cpp | 26 +++--- tests/auto/qdiriterator/tst_qdiriterator.cpp | 26 +++--- tests/auto/qdirmodel/tst_qdirmodel.cpp | 26 +++--- tests/auto/qdockwidget/tst_qdockwidget.cpp | 26 +++--- tests/auto/qdom/tst_qdom.cpp | 26 +++--- tests/auto/qdoublespinbox/tst_qdoublespinbox.cpp | 26 +++--- .../auto/qdoublevalidator/tst_qdoublevalidator.cpp | 26 +++--- tests/auto/qdrag/tst_qdrag.cpp | 26 +++--- tests/auto/qerrormessage/tst_qerrormessage.cpp | 26 +++--- tests/auto/qevent/tst_qevent.cpp | 26 +++--- tests/auto/qeventloop/tst_qeventloop.cpp | 26 +++--- .../tst_qexplicitlyshareddatapointer.cpp | 26 +++--- tests/auto/qfile/stdinprocess/main.cpp | 26 +++--- tests/auto/qfile/tst_qfile.cpp | 26 +++--- tests/auto/qfiledialog/tst_qfiledialog.cpp | 26 +++--- .../qfileiconprovider/tst_qfileiconprovider.cpp | 26 +++--- tests/auto/qfileinfo/tst_qfileinfo.cpp | 26 +++--- .../auto/qfilesystemmodel/tst_qfilesystemmodel.cpp | 26 +++--- .../qfilesystemwatcher/tst_qfilesystemwatcher.cpp | 26 +++--- tests/auto/qflags/tst_qflags.cpp | 26 +++--- tests/auto/qfocusevent/tst_qfocusevent.cpp | 26 +++--- tests/auto/qfocusframe/tst_qfocusframe.cpp | 26 +++--- tests/auto/qfont/tst_qfont.cpp | 26 +++--- tests/auto/qfontcombobox/tst_qfontcombobox.cpp | 26 +++--- tests/auto/qfontdatabase/tst_qfontdatabase.cpp | 26 +++--- tests/auto/qfontdialog/tst_qfontdialog.cpp | 26 +++--- tests/auto/qfontmetrics/tst_qfontmetrics.cpp | 26 +++--- tests/auto/qformlayout/tst_qformlayout.cpp | 26 +++--- tests/auto/qftp/tst_qftp.cpp | 26 +++--- tests/auto/qfuture/tst_qfuture.cpp | 26 +++--- tests/auto/qfuture/versioncheck.h | 26 +++--- tests/auto/qfuturewatcher/tst_qfuturewatcher.cpp | 26 +++--- tests/auto/qgetputenv/tst_qgetputenv.cpp | 26 +++--- tests/auto/qgl/tst_qgl.cpp | 26 +++--- tests/auto/qglobal/tst_qglobal.cpp | 26 +++--- .../tst_qgraphicsgridlayout.cpp | 26 +++--- tests/auto/qgraphicsitem/tst_qgraphicsitem.cpp | 26 +++--- .../tst_qgraphicsitemanimation.cpp | 26 +++--- tests/auto/qgraphicslayout/tst_qgraphicslayout.cpp | 26 +++--- .../tst_qgraphicslayoutitem.cpp | 26 +++--- .../tst_qgraphicslinearlayout.cpp | 26 +++--- .../tst_qgraphicspixmapitem.cpp | 26 +++--- .../tst_qgraphicspolygonitem.cpp | 26 +++--- .../tst_qgraphicsproxywidget.cpp | 26 +++--- tests/auto/qgraphicsscene/tst_qgraphicsscene.cpp | 26 +++--- tests/auto/qgraphicsview/tst_qgraphicsview.cpp | 26 +++--- tests/auto/qgraphicsview/tst_qgraphicsview_2.cpp | 26 +++--- tests/auto/qgraphicswidget/tst_qgraphicswidget.cpp | 26 +++--- tests/auto/qgridlayout/tst_qgridlayout.cpp | 26 +++--- tests/auto/qgroupbox/tst_qgroupbox.cpp | 26 +++--- tests/auto/qguivariant/tst_qguivariant.cpp | 26 +++--- tests/auto/qhash/tst_qhash.cpp | 26 +++--- tests/auto/qheaderview/tst_qheaderview.cpp | 26 +++--- .../qhelpcontentmodel/tst_qhelpcontentmodel.cpp | 26 +++--- tests/auto/qhelpenginecore/tst_qhelpenginecore.cpp | 26 +++--- tests/auto/qhelpgenerator/tst_qhelpgenerator.cpp | 26 +++--- tests/auto/qhelpindexmodel/tst_qhelpindexmodel.cpp | 26 +++--- .../auto/qhelpprojectdata/tst_qhelpprojectdata.cpp | 26 +++--- tests/auto/qhostaddress/tst_qhostaddress.cpp | 26 +++--- tests/auto/qhostinfo/tst_qhostinfo.cpp | 26 +++--- tests/auto/qhttp/dummyserver.h | 26 +++--- tests/auto/qhttp/tst_qhttp.cpp | 26 +++--- .../tst_qhttpnetworkconnection.cpp | 26 +++--- .../qhttpnetworkreply/tst_qhttpnetworkreply.cpp | 26 +++--- .../qhttpsocketengine/tst_qhttpsocketengine.cpp | 26 +++--- tests/auto/qicoimageformat/tst_qicoimageformat.cpp | 26 +++--- tests/auto/qicon/tst_qicon.cpp | 26 +++--- tests/auto/qimage/tst_qimage.cpp | 26 +++--- tests/auto/qimageiohandler/tst_qimageiohandler.cpp | 26 +++--- tests/auto/qimagereader/tst_qimagereader.cpp | 26 +++--- tests/auto/qimagewriter/tst_qimagewriter.cpp | 26 +++--- tests/auto/qinputdialog/tst_qinputdialog.cpp | 26 +++--- tests/auto/qintvalidator/tst_qintvalidator.cpp | 26 +++--- tests/auto/qiodevice/tst_qiodevice.cpp | 26 +++--- tests/auto/qitemdelegate/tst_qitemdelegate.cpp | 26 +++--- .../qitemeditorfactory/tst_qitemeditorfactory.cpp | 26 +++--- tests/auto/qitemmodel/modelstotest.cpp | 26 +++--- tests/auto/qitemmodel/tst_qitemmodel.cpp | 26 +++--- .../tst_qitemselectionmodel.cpp | 26 +++--- tests/auto/qitemview/tst_qitemview.cpp | 26 +++--- tests/auto/qitemview/viewstotest.cpp | 26 +++--- tests/auto/qkeyevent/tst_qkeyevent.cpp | 26 +++--- tests/auto/qkeysequence/tst_qkeysequence.cpp | 26 +++--- tests/auto/qlabel/tst_qlabel.cpp | 26 +++--- tests/auto/qlayout/tst_qlayout.cpp | 26 +++--- tests/auto/qlcdnumber/tst_qlcdnumber.cpp | 26 +++--- tests/auto/qlibrary/tst_qlibrary.cpp | 26 +++--- tests/auto/qline/tst_qline.cpp | 26 +++--- tests/auto/qlineedit/tst_qlineedit.cpp | 26 +++--- tests/auto/qlist/tst_qlist.cpp | 26 +++--- tests/auto/qlistview/tst_qlistview.cpp | 26 +++--- tests/auto/qlistwidget/tst_qlistwidget.cpp | 26 +++--- tests/auto/qlocale/syslocaleapp/syslocaleapp.cpp | 26 +++--- tests/auto/qlocale/tst_qlocale.cpp | 26 +++--- tests/auto/qlocalsocket/example/client/main.cpp | 26 +++--- tests/auto/qlocalsocket/example/server/main.cpp | 26 +++--- tests/auto/qlocalsocket/lackey/main.cpp | 26 +++--- tests/auto/qlocalsocket/tst_qlocalsocket.cpp | 26 +++--- tests/auto/qmacstyle/tst_qmacstyle.cpp | 26 +++--- tests/auto/qmainwindow/tst_qmainwindow.cpp | 26 +++--- tests/auto/qmake/testcompiler.cpp | 26 +++--- tests/auto/qmake/testcompiler.h | 26 +++--- tests/auto/qmake/testdata/findDeps/main.cpp | 26 +++--- tests/auto/qmake/testdata/findDeps/object1.h | 26 +++--- tests/auto/qmake/testdata/findDeps/object2.h | 26 +++--- tests/auto/qmake/testdata/findDeps/object3.h | 26 +++--- tests/auto/qmake/testdata/findDeps/object4.h | 26 +++--- tests/auto/qmake/testdata/findDeps/object5.h | 26 +++--- tests/auto/qmake/testdata/findDeps/object6.h | 26 +++--- tests/auto/qmake/testdata/findDeps/object7.h | 26 +++--- tests/auto/qmake/testdata/findDeps/object8.h | 26 +++--- tests/auto/qmake/testdata/findDeps/object9.h | 26 +++--- tests/auto/qmake/testdata/findMocs/main.cpp | 26 +++--- tests/auto/qmake/testdata/findMocs/object1.h | 26 +++--- tests/auto/qmake/testdata/findMocs/object2.h | 26 +++--- tests/auto/qmake/testdata/findMocs/object3.h | 26 +++--- tests/auto/qmake/testdata/findMocs/object4.h | 26 +++--- tests/auto/qmake/testdata/findMocs/object5.h | 26 +++--- tests/auto/qmake/testdata/findMocs/object6.h | 26 +++--- tests/auto/qmake/testdata/findMocs/object7.h | 26 +++--- tests/auto/qmake/testdata/functions/1.cpp | 26 +++--- tests/auto/qmake/testdata/functions/2.cpp | 26 +++--- tests/auto/qmake/testdata/functions/one/1.cpp | 26 +++--- tests/auto/qmake/testdata/functions/one/2.cpp | 26 +++--- .../qmake/testdata/functions/three/wildcard21.cpp | 26 +++--- .../qmake/testdata/functions/three/wildcard22.cpp | 26 +++--- tests/auto/qmake/testdata/functions/two/1.cpp | 26 +++--- tests/auto/qmake/testdata/functions/two/2.cpp | 26 +++--- tests/auto/qmake/testdata/functions/wildcard21.cpp | 26 +++--- tests/auto/qmake/testdata/functions/wildcard22.cpp | 26 +++--- tests/auto/qmake/testdata/include_dir/main.cpp | 26 +++--- .../auto/qmake/testdata/include_dir/test_file.cpp | 26 +++--- tests/auto/qmake/testdata/include_dir/test_file.h | 26 +++--- tests/auto/qmake/testdata/install_depends/main.cpp | 26 +++--- .../qmake/testdata/install_depends/test_file.cpp | 26 +++--- .../qmake/testdata/install_depends/test_file.h | 26 +++--- tests/auto/qmake/testdata/one_space/main.cpp | 26 +++--- tests/auto/qmake/testdata/quotedfilenames/main.cpp | 26 +++--- tests/auto/qmake/testdata/shadow_files/main.cpp | 26 +++--- .../auto/qmake/testdata/shadow_files/test_file.cpp | 26 +++--- tests/auto/qmake/testdata/shadow_files/test_file.h | 26 +++--- tests/auto/qmake/testdata/simple_app/main.cpp | 26 +++--- tests/auto/qmake/testdata/simple_app/test_file.cpp | 26 +++--- tests/auto/qmake/testdata/simple_app/test_file.h | 26 +++--- tests/auto/qmake/testdata/simple_dll/simple.cpp | 26 +++--- tests/auto/qmake/testdata/simple_dll/simple.h | 26 +++--- tests/auto/qmake/testdata/simple_lib/simple.cpp | 26 +++--- tests/auto/qmake/testdata/simple_lib/simple.h | 26 +++--- .../qmake/testdata/subdirs/simple_app/main.cpp | 26 +++--- .../testdata/subdirs/simple_app/test_file.cpp | 26 +++--- .../qmake/testdata/subdirs/simple_app/test_file.h | 26 +++--- .../qmake/testdata/subdirs/simple_dll/simple.cpp | 26 +++--- .../qmake/testdata/subdirs/simple_dll/simple.h | 26 +++--- tests/auto/qmake/tst_qmake.cpp | 26 +++--- tests/auto/qmap/tst_qmap.cpp | 26 +++--- tests/auto/qmdiarea/tst_qmdiarea.cpp | 26 +++--- tests/auto/qmdisubwindow/tst_qmdisubwindow.cpp | 26 +++--- tests/auto/qmenu/tst_qmenu.cpp | 26 +++--- tests/auto/qmenubar/tst_qmenubar.cpp | 26 +++--- tests/auto/qmessagebox/tst_qmessagebox.cpp | 26 +++--- tests/auto/qmetaobject/tst_qmetaobject.cpp | 26 +++--- tests/auto/qmetatype/tst_qmetatype.cpp | 26 +++--- tests/auto/qmouseevent/tst_qmouseevent.cpp | 26 +++--- .../qmouseevent_modal/tst_qmouseevent_modal.cpp | 26 +++--- tests/auto/qmovie/tst_qmovie.cpp | 26 +++--- tests/auto/qmultiscreen/tst_qmultiscreen.cpp | 26 +++--- tests/auto/qmutex/tst_qmutex.cpp | 26 +++--- tests/auto/qmutexlocker/tst_qmutexlocker.cpp | 26 +++--- .../tst_qnativesocketengine.cpp | 26 +++--- ...t_qnetworkaccessmanager_and_qprogressdialog.cpp | 26 +++--- .../tst_qnetworkaddressentry.cpp | 26 +++--- .../tst_qnetworkcachemetadata.cpp | 26 +++--- tests/auto/qnetworkcookie/tst_qnetworkcookie.cpp | 26 +++--- .../qnetworkcookiejar/tst_qnetworkcookiejar.cpp | 26 +++--- .../qnetworkdiskcache/tst_qnetworkdiskcache.cpp | 26 +++--- .../qnetworkinterface/tst_qnetworkinterface.cpp | 26 +++--- tests/auto/qnetworkproxy/tst_qnetworkproxy.cpp | 26 +++--- tests/auto/qnetworkreply/echo/main.cpp | 26 +++--- tests/auto/qnetworkreply/tst_qnetworkreply.cpp | 26 +++--- tests/auto/qnetworkrequest/tst_qnetworkrequest.cpp | 26 +++--- tests/auto/qnumeric/tst_qnumeric.cpp | 26 +++--- tests/auto/qobject/signalbug.cpp | 26 +++--- tests/auto/qobject/signalbug.h | 26 +++--- tests/auto/qobject/tst_qobject.cpp | 26 +++--- .../qobjectperformance/tst_qobjectperformance.cpp | 26 +++--- tests/auto/qobjectrace/tst_qobjectrace.cpp | 26 +++--- tests/auto/qpaintengine/tst_qpaintengine.cpp | 26 +++--- tests/auto/qpainter/tst_qpainter.cpp | 26 +++--- tests/auto/qpainter/utils/createImages/main.cpp | 26 +++--- tests/auto/qpainterpath/tst_qpainterpath.cpp | 26 +++--- .../tst_qpainterpathstroker.cpp | 26 +++--- tests/auto/qpalette/tst_qpalette.cpp | 26 +++--- tests/auto/qpathclipper/paths.cpp | 26 +++--- tests/auto/qpathclipper/paths.h | 26 +++--- tests/auto/qpathclipper/tst_qpathclipper.cpp | 26 +++--- tests/auto/qpen/tst_qpen.cpp | 26 +++--- tests/auto/qpicture/tst_qpicture.cpp | 26 +++--- tests/auto/qpixmap/tst_qpixmap.cpp | 26 +++--- tests/auto/qpixmapcache/tst_qpixmapcache.cpp | 26 +++--- tests/auto/qpixmapfilter/tst_qpixmapfilter.cpp | 26 +++--- tests/auto/qplaintextedit/tst_qplaintextedit.cpp | 26 +++--- tests/auto/qplugin/debugplugin/main.cpp | 26 +++--- tests/auto/qplugin/releaseplugin/main.cpp | 26 +++--- tests/auto/qplugin/tst_qplugin.cpp | 26 +++--- .../qpluginloader/almostplugin/almostplugin.cpp | 26 +++--- .../auto/qpluginloader/almostplugin/almostplugin.h | 26 +++--- .../auto/qpluginloader/theplugin/plugininterface.h | 26 +++--- tests/auto/qpluginloader/theplugin/theplugin.cpp | 26 +++--- tests/auto/qpluginloader/theplugin/theplugin.h | 26 +++--- tests/auto/qpluginloader/tst_qpluginloader.cpp | 26 +++--- tests/auto/qpoint/tst_qpoint.cpp | 26 +++--- tests/auto/qpointer/tst_qpointer.cpp | 26 +++--- tests/auto/qpolygon/tst_qpolygon.cpp | 26 +++--- tests/auto/qprinter/tst_qprinter.cpp | 26 +++--- tests/auto/qprinterinfo/tst_qprinterinfo.cpp | 26 +++--- tests/auto/qprocess/fileWriterProcess/main.cpp | 26 +++--- tests/auto/qprocess/testDetached/main.cpp | 26 +++--- tests/auto/qprocess/testExitCodes/main.cpp | 26 +++--- tests/auto/qprocess/testGuiProcess/main.cpp | 26 +++--- tests/auto/qprocess/testProcessCrash/main.cpp | 26 +++--- .../qprocess/testProcessDeadWhileReading/main.cpp | 26 +++--- tests/auto/qprocess/testProcessEOF/main.cpp | 26 +++--- tests/auto/qprocess/testProcessEcho/main.cpp | 26 +++--- tests/auto/qprocess/testProcessEcho2/main.cpp | 26 +++--- tests/auto/qprocess/testProcessEcho3/main.cpp | 26 +++--- .../auto/qprocess/testProcessEchoGui/main_win.cpp | 26 +++--- tests/auto/qprocess/testProcessLoopback/main.cpp | 26 +++--- tests/auto/qprocess/testProcessNormal/main.cpp | 26 +++--- tests/auto/qprocess/testProcessOutput/main.cpp | 26 +++--- tests/auto/qprocess/testProcessSpacesArgs/main.cpp | 26 +++--- .../auto/qprocess/testSetWorkingDirectory/main.cpp | 26 +++--- tests/auto/qprocess/testSoftExit/main_unix.cpp | 26 +++--- tests/auto/qprocess/testSoftExit/main_win.cpp | 26 +++--- tests/auto/qprocess/testSpaceInName/main.cpp | 26 +++--- tests/auto/qprocess/tst_qprocess.cpp | 26 +++--- tests/auto/qprogressbar/tst_qprogressbar.cpp | 26 +++--- tests/auto/qprogressdialog/tst_qprogressdialog.cpp | 26 +++--- tests/auto/qpushbutton/tst_qpushbutton.cpp | 26 +++--- tests/auto/qqueue/tst_qqueue.cpp | 26 +++--- tests/auto/qradiobutton/tst_qradiobutton.cpp | 26 +++--- tests/auto/qrand/tst_qrand.cpp | 26 +++--- tests/auto/qreadlocker/tst_qreadlocker.cpp | 26 +++--- tests/auto/qreadwritelock/tst_qreadwritelock.cpp | 26 +++--- tests/auto/qrect/tst_qrect.cpp | 26 +++--- tests/auto/qregexp/tst_qregexp.cpp | 26 +++--- .../auto/qregexpvalidator/tst_qregexpvalidator.cpp | 26 +++--- tests/auto/qregion/tst_qregion.cpp | 26 +++--- tests/auto/qresourceengine/tst_qresourceengine.cpp | 26 +++--- tests/auto/qscriptable/tst_qscriptable.cpp | 26 +++--- tests/auto/qscriptclass/tst_qscriptclass.cpp | 26 +++--- tests/auto/qscriptcontext/tst_qscriptcontext.cpp | 26 +++--- .../qscriptcontextinfo/tst_qscriptcontextinfo.cpp | 26 +++--- tests/auto/qscriptengine/tst_qscriptengine.cpp | 26 +++--- .../qscriptengineagent/tst_qscriptengineagent.cpp | 26 +++--- .../tst_qscriptenginedebugger.cpp | 26 +++--- .../qscriptextqobject/tst_qscriptextqobject.cpp | 26 +++--- .../qscriptjstestsuite/tst_qscriptjstestsuite.cpp | 26 +++--- tests/auto/qscriptstring/tst_qscriptstring.cpp | 26 +++--- .../qscriptv8testsuite/tst_qscriptv8testsuite.cpp | 26 +++--- tests/auto/qscriptvalue/tst_qscriptvalue.cpp | 26 +++--- .../tst_qscriptvalueiterator.cpp | 26 +++--- tests/auto/qscrollarea/tst_qscrollarea.cpp | 26 +++--- tests/auto/qscrollbar/tst_qscrollbar.cpp | 26 +++--- tests/auto/qsemaphore/tst_qsemaphore.cpp | 26 +++--- tests/auto/qset/tst_qset.cpp | 26 +++--- tests/auto/qsettings/tst_qsettings.cpp | 26 +++--- tests/auto/qsharedmemory/lackey/main.cpp | 26 +++--- .../qsharedmemory/qsystemlock/tst_qsystemlock.cpp | 26 +++--- tests/auto/qsharedmemory/src/qsystemlock.cpp | 26 +++--- tests/auto/qsharedmemory/src/qsystemlock.h | 26 +++--- tests/auto/qsharedmemory/src/qsystemlock_p.h | 26 +++--- tests/auto/qsharedmemory/src/qsystemlock_unix.cpp | 26 +++--- tests/auto/qsharedmemory/src/qsystemlock_win.cpp | 26 +++--- tests/auto/qsharedmemory/tst_qsharedmemory.cpp | 26 +++--- tests/auto/qsharedpointer/externaltests.cpp | 26 +++--- tests/auto/qsharedpointer/externaltests.h | 26 +++--- tests/auto/qsharedpointer/tst_qsharedpointer.cpp | 26 +++--- tests/auto/qshortcut/tst_qshortcut.cpp | 26 +++--- tests/auto/qsidebar/tst_qsidebar.cpp | 26 +++--- tests/auto/qsignalmapper/tst_qsignalmapper.cpp | 26 +++--- tests/auto/qsignalspy/tst_qsignalspy.cpp | 26 +++--- .../auto/qsimplexmlnodemodel/TestSimpleNodeModel.h | 26 +++--- .../tst_qsimplexmlnodemodel.cpp | 26 +++--- tests/auto/qsize/tst_qsize.cpp | 26 +++--- tests/auto/qsizef/tst_qsizef.cpp | 26 +++--- tests/auto/qsizegrip/tst_qsizegrip.cpp | 26 +++--- tests/auto/qslider/tst_qslider.cpp | 26 +++--- tests/auto/qsocketnotifier/tst_qsocketnotifier.cpp | 26 +++--- .../tst_qsocks5socketengine.cpp | 26 +++--- .../tst_qsortfilterproxymodel.cpp | 26 +++--- tests/auto/qsound/tst_qsound.cpp | 26 +++--- tests/auto/qsourcelocation/tst_qsourcelocation.cpp | 26 +++--- tests/auto/qspinbox/tst_qspinbox.cpp | 26 +++--- tests/auto/qsplitter/tst_qsplitter.cpp | 26 +++--- tests/auto/qsql/tst_qsql.cpp | 26 +++--- tests/auto/qsqldatabase/tst_databases.h | 26 +++--- tests/auto/qsqldatabase/tst_qsqldatabase.cpp | 26 +++--- tests/auto/qsqlerror/tst_qsqlerror.cpp | 26 +++--- tests/auto/qsqlfield/tst_qsqlfield.cpp | 26 +++--- tests/auto/qsqlquery/tst_qsqlquery.cpp | 26 +++--- tests/auto/qsqlquerymodel/tst_qsqlquerymodel.cpp | 26 +++--- tests/auto/qsqlrecord/tst_qsqlrecord.cpp | 26 +++--- .../tst_qsqlrelationaltablemodel.cpp | 26 +++--- tests/auto/qsqltablemodel/tst_qsqltablemodel.cpp | 26 +++--- tests/auto/qsqlthread/tst_qsqlthread.cpp | 26 +++--- tests/auto/qsslcertificate/tst_qsslcertificate.cpp | 26 +++--- tests/auto/qsslcipher/tst_qsslcipher.cpp | 26 +++--- tests/auto/qsslerror/tst_qsslerror.cpp | 26 +++--- tests/auto/qsslkey/tst_qsslkey.cpp | 26 +++--- tests/auto/qsslsocket/tst_qsslsocket.cpp | 26 +++--- tests/auto/qstackedlayout/tst_qstackedlayout.cpp | 26 +++--- tests/auto/qstackedwidget/tst_qstackedwidget.cpp | 26 +++--- tests/auto/qstandarditem/tst_qstandarditem.cpp | 26 +++--- .../qstandarditemmodel/tst_qstandarditemmodel.cpp | 26 +++--- tests/auto/qstatusbar/tst_qstatusbar.cpp | 26 +++--- tests/auto/qstl/tst_qstl.cpp | 26 +++--- tests/auto/qstring/double_data.h | 26 +++--- tests/auto/qstring/tst_qstring.cpp | 26 +++--- tests/auto/qstringlist/tst_qstringlist.cpp | 26 +++--- tests/auto/qstringlistmodel/qmodellistener.h | 26 +++--- .../auto/qstringlistmodel/tst_qstringlistmodel.cpp | 26 +++--- tests/auto/qstringmatcher/tst_qstringmatcher.cpp | 26 +++--- tests/auto/qstyle/tst_qstyle.cpp | 26 +++--- tests/auto/qstyleoption/tst_qstyleoption.cpp | 26 +++--- .../auto/qstylesheetstyle/tst_qstylesheetstyle.cpp | 26 +++--- tests/auto/qsvgdevice/tst_qsvgdevice.cpp | 26 +++--- tests/auto/qsvggenerator/tst_qsvggenerator.cpp | 26 +++--- tests/auto/qsvgrenderer/tst_qsvgrenderer.cpp | 26 +++--- .../qsyntaxhighlighter/tst_qsyntaxhighlighter.cpp | 26 +++--- tests/auto/qsysinfo/tst_qsysinfo.cpp | 26 +++--- .../auto/qsystemsemaphore/tst_qsystemsemaphore.cpp | 26 +++--- tests/auto/qsystemtrayicon/tst_qsystemtrayicon.cpp | 26 +++--- tests/auto/qtabbar/tst_qtabbar.cpp | 26 +++--- tests/auto/qtableview/tst_qtableview.cpp | 26 +++--- tests/auto/qtablewidget/tst_qtablewidget.cpp | 26 +++--- tests/auto/qtabwidget/tst_qtabwidget.cpp | 26 +++--- .../qtconcurrentfilter/tst_qtconcurrentfilter.cpp | 26 +++--- .../tst_qtconcurrentiteratekernel.cpp | 26 +++--- tests/auto/qtconcurrentmap/functions.h | 26 +++--- tests/auto/qtconcurrentmap/tst_qtconcurrentmap.cpp | 26 +++--- tests/auto/qtconcurrentrun/tst_qtconcurrentrun.cpp | 26 +++--- .../tst_qtconcurrentthreadengine.cpp | 26 +++--- tests/auto/qtcpserver/crashingServer/main.cpp | 26 +++--- tests/auto/qtcpserver/tst_qtcpserver.cpp | 26 +++--- tests/auto/qtcpsocket/stressTest/Test.cpp | 26 +++--- tests/auto/qtcpsocket/stressTest/Test.h | 26 +++--- tests/auto/qtcpsocket/stressTest/main.cpp | 26 +++--- tests/auto/qtcpsocket/tst_qtcpsocket.cpp | 26 +++--- tests/auto/qtemporaryfile/tst_qtemporaryfile.cpp | 26 +++--- tests/auto/qtessellator/XrenderFake.h | 26 +++--- tests/auto/qtessellator/arc.cpp | 26 +++--- tests/auto/qtessellator/arc.h | 26 +++--- tests/auto/qtessellator/dataparser.cpp | 26 +++--- tests/auto/qtessellator/dataparser.h | 26 +++--- tests/auto/qtessellator/oldtessellator.cpp | 26 +++--- tests/auto/qtessellator/oldtessellator.h | 26 +++--- tests/auto/qtessellator/qnum.h | 26 +++--- tests/auto/qtessellator/sample_data.h | 26 +++--- tests/auto/qtessellator/simple.cpp | 26 +++--- tests/auto/qtessellator/simple.h | 26 +++--- tests/auto/qtessellator/testtessellator.cpp | 26 +++--- tests/auto/qtessellator/testtessellator.h | 26 +++--- tests/auto/qtessellator/tst_tessellator.cpp | 26 +++--- tests/auto/qtessellator/utils.cpp | 26 +++--- tests/auto/qtessellator/utils.h | 26 +++--- tests/auto/qtextblock/tst_qtextblock.cpp | 26 +++--- .../tst_qtextboundaryfinder.cpp | 26 +++--- tests/auto/qtextbrowser/tst_qtextbrowser.cpp | 26 +++--- tests/auto/qtextcodec/echo/main.cpp | 26 +++--- tests/auto/qtextcodec/tst_qtextcodec.cpp | 26 +++--- tests/auto/qtextcursor/tst_qtextcursor.cpp | 26 +++--- tests/auto/qtextdocument/common.h | 26 +++--- tests/auto/qtextdocument/tst_qtextdocument.cpp | 26 +++--- .../tst_qtextdocumentfragment.cpp | 26 +++--- .../tst_qtextdocumentlayout.cpp | 26 +++--- tests/auto/qtextedit/tst_qtextedit.cpp | 26 +++--- tests/auto/qtextformat/tst_qtextformat.cpp | 26 +++--- tests/auto/qtextlayout/tst_qtextlayout.cpp | 26 +++--- tests/auto/qtextlist/tst_qtextlist.cpp | 26 +++--- tests/auto/qtextobject/tst_qtextobject.cpp | 26 +++--- tests/auto/qtextodfwriter/tst_qtextodfwriter.cpp | 26 +++--- tests/auto/qtextpiecetable/tst_qtextpiecetable.cpp | 26 +++--- tests/auto/qtextscriptengine/generate/main.cpp | 26 +++--- .../qtextscriptengine/tst_qtextscriptengine.cpp | 26 +++--- .../auto/qtextstream/readAllStdinProcess/main.cpp | 26 +++--- .../auto/qtextstream/readLineStdinProcess/main.cpp | 26 +++--- tests/auto/qtextstream/stdinProcess/main.cpp | 26 +++--- tests/auto/qtextstream/tst_qtextstream.cpp | 26 +++--- tests/auto/qtexttable/tst_qtexttable.cpp | 26 +++--- tests/auto/qthread/tst_qthread.cpp | 26 +++--- tests/auto/qthreadonce/qthreadonce.cpp | 26 +++--- tests/auto/qthreadonce/qthreadonce.h | 26 +++--- tests/auto/qthreadonce/tst_qthreadonce.cpp | 26 +++--- tests/auto/qthreadpool/tst_qthreadpool.cpp | 26 +++--- tests/auto/qthreadstorage/tst_qthreadstorage.cpp | 26 +++--- tests/auto/qtime/tst_qtime.cpp | 26 +++--- tests/auto/qtimeline/tst_qtimeline.cpp | 26 +++--- tests/auto/qtimer/tst_qtimer.cpp | 26 +++--- tests/auto/qtmd5/tst_qtmd5.cpp | 26 +++--- .../qtokenautomaton/tokenizers/basic/basic.cpp | 26 +++--- .../auto/qtokenautomaton/tokenizers/basic/basic.h | 26 +++--- .../tokenizers/basicNamespace/basicNamespace.cpp | 26 +++--- .../tokenizers/basicNamespace/basicNamespace.h | 26 +++--- .../tokenizers/boilerplate/boilerplate.cpp | 26 +++--- .../tokenizers/boilerplate/boilerplate.h | 26 +++--- .../tokenizers/boilerplate/boilerplate.xml | 26 +++--- .../tokenizers/noNamespace/noNamespace.cpp | 26 +++--- .../tokenizers/noNamespace/noNamespace.h | 26 +++--- .../tokenizers/noToString/noToString.cpp | 26 +++--- .../tokenizers/noToString/noToString.h | 26 +++--- .../tokenizers/withNamespace/withNamespace.cpp | 26 +++--- .../tokenizers/withNamespace/withNamespace.h | 26 +++--- tests/auto/qtokenautomaton/tst_qtokenautomaton.cpp | 26 +++--- tests/auto/qtoolbar/tst_qtoolbar.cpp | 26 +++--- tests/auto/qtoolbox/tst_qtoolbox.cpp | 26 +++--- tests/auto/qtoolbutton/tst_qtoolbutton.cpp | 26 +++--- tests/auto/qtooltip/tst_qtooltip.cpp | 26 +++--- tests/auto/qtransform/tst_qtransform.cpp | 26 +++--- .../qtransformedscreen/tst_qtransformedscreen.cpp | 26 +++--- tests/auto/qtranslator/tst_qtranslator.cpp | 26 +++--- tests/auto/qtreeview/tst_qtreeview.cpp | 26 +++--- tests/auto/qtreewidget/tst_qtreewidget.cpp | 26 +++--- .../tst_qtreewidgetitemiterator.cpp | 26 +++--- tests/auto/qtwidgets/mainwindow.cpp | 26 +++--- tests/auto/qtwidgets/mainwindow.h | 26 +++--- tests/auto/qtwidgets/tst_qtwidgets.cpp | 26 +++--- tests/auto/qudpsocket/clientserver/main.cpp | 26 +++--- tests/auto/qudpsocket/tst_qudpsocket.cpp | 26 +++--- tests/auto/qudpsocket/udpServer/main.cpp | 26 +++--- tests/auto/qundogroup/tst_qundogroup.cpp | 26 +++--- tests/auto/qundostack/tst_qundostack.cpp | 26 +++--- tests/auto/qurl/tst_qurl.cpp | 26 +++--- tests/auto/quuid/tst_quuid.cpp | 26 +++--- tests/auto/qvariant/tst_qvariant.cpp | 26 +++--- tests/auto/qvarlengtharray/tst_qvarlengtharray.cpp | 26 +++--- tests/auto/qvector/tst_qvector.cpp | 26 +++--- tests/auto/qwaitcondition/tst_qwaitcondition.cpp | 26 +++--- tests/auto/qwebframe/dummy.cpp | 26 +++--- tests/auto/qwebpage/dummy.cpp | 26 +++--- tests/auto/qwidget/tst_qwidget.cpp | 26 +++--- tests/auto/qwidget/tst_qwidget_mac_helpers.h | 26 +++--- tests/auto/qwidget_window/tst_qwidget_window.cpp | 26 +++--- tests/auto/qwidgetaction/tst_qwidgetaction.cpp | 26 +++--- tests/auto/qwindowsurface/tst_qwindowsurface.cpp | 26 +++--- .../qwineventnotifier/tst_qwineventnotifier.cpp | 26 +++--- tests/auto/qwizard/tst_qwizard.cpp | 26 +++--- tests/auto/qwmatrix/tst_qwmatrix.cpp | 26 +++--- tests/auto/qworkspace/tst_qworkspace.cpp | 26 +++--- tests/auto/qwritelocker/tst_qwritelocker.cpp | 26 +++--- tests/auto/qwsembedwidget/tst_qwsembedwidget.cpp | 26 +++--- tests/auto/qwsinputmethod/tst_qwsinputmethod.cpp | 26 +++--- tests/auto/qwswindowsystem/tst_qwswindowsystem.cpp | 26 +++--- tests/auto/qx11info/tst_qx11info.cpp | 26 +++--- tests/auto/qxml/tst_qxml.cpp | 26 +++--- tests/auto/qxmlformatter/tst_qxmlformatter.cpp | 26 +++--- tests/auto/qxmlinputsource/tst_qxmlinputsource.cpp | 26 +++--- tests/auto/qxmlitem/tst_qxmlitem.cpp | 26 +++--- tests/auto/qxmlname/tst_qxmlname.cpp | 26 +++--- tests/auto/qxmlnamepool/tst_qxmlnamepool.cpp | 26 +++--- .../qxmlnodemodelindex/tst_qxmlnodemodelindex.cpp | 26 +++--- tests/auto/qxmlquery/MessageSilencer.h | 26 +++--- tests/auto/qxmlquery/MessageValidator.cpp | 26 +++--- tests/auto/qxmlquery/MessageValidator.h | 26 +++--- tests/auto/qxmlquery/NetworkOverrider.h | 26 +++--- tests/auto/qxmlquery/PushBaseliner.h | 26 +++--- tests/auto/qxmlquery/TestFundament.cpp | 26 +++--- tests/auto/qxmlquery/TestFundament.h | 26 +++--- tests/auto/qxmlquery/tst_qxmlquery.cpp | 26 +++--- tests/auto/qxmlresultitems/tst_qxmlresultitems.cpp | 26 +++--- tests/auto/qxmlserializer/tst_qxmlserializer.cpp | 26 +++--- tests/auto/qxmlsimplereader/parser/main.cpp | 26 +++--- tests/auto/qxmlsimplereader/parser/parser.cpp | 26 +++--- tests/auto/qxmlsimplereader/parser/parser.h | 26 +++--- .../auto/qxmlsimplereader/tst_qxmlsimplereader.cpp | 26 +++--- tests/auto/qxmlstream/qc14n.h | 26 +++--- tests/auto/qxmlstream/tst_qxmlstream.cpp | 26 +++--- tests/auto/qzip/tst_qzip.cpp | 26 +++--- tests/auto/rcc/tst_rcc.cpp | 26 +++--- tests/auto/selftests/alive/qtestalive.cpp | 26 +++--- tests/auto/selftests/alive/tst_alive.cpp | 26 +++--- tests/auto/selftests/assert/tst_assert.cpp | 26 +++--- .../benchlibcallgrind/tst_benchlibcallgrind.cpp | 26 +++--- .../tst_benchlibeventcounter.cpp | 26 +++--- .../benchliboptions/tst_benchliboptions.cpp | 26 +++--- .../tst_benchlibtickcounter.cpp | 26 +++--- .../benchlibwalltime/tst_benchlibwalltime.cpp | 26 +++--- tests/auto/selftests/cmptest/tst_cmptest.cpp | 26 +++--- .../commandlinedata/tst_commandlinedata.cpp | 26 +++--- tests/auto/selftests/crashes/tst_crashes.cpp | 26 +++--- tests/auto/selftests/datatable/tst_datatable.cpp | 26 +++--- tests/auto/selftests/datetime/tst_datetime.cpp | 26 +++--- .../selftests/differentexec/tst_differentexec.cpp | 26 +++--- tests/auto/selftests/exception/tst_exception.cpp | 26 +++--- tests/auto/selftests/expectfail/tst_expectfail.cpp | 26 +++--- tests/auto/selftests/failinit/tst_failinit.cpp | 26 +++--- .../selftests/failinitdata/tst_failinitdata.cpp | 26 +++--- tests/auto/selftests/fetchbogus/tst_fetchbogus.cpp | 26 +++--- tests/auto/selftests/globaldata/tst_globaldata.cpp | 26 +++--- tests/auto/selftests/maxwarnings/maxwarnings.cpp | 26 +++--- tests/auto/selftests/multiexec/tst_multiexec.cpp | 26 +++--- .../qexecstringlist/tst_qexecstringlist.cpp | 26 +++--- tests/auto/selftests/singleskip/tst_singleskip.cpp | 26 +++--- tests/auto/selftests/skip/tst_skip.cpp | 26 +++--- tests/auto/selftests/skipglobal/tst_skipglobal.cpp | 26 +++--- tests/auto/selftests/skipinit/tst_skipinit.cpp | 26 +++--- .../selftests/skipinitdata/tst_skipinitdata.cpp | 26 +++--- tests/auto/selftests/sleep/tst_sleep.cpp | 26 +++--- tests/auto/selftests/strcmp/tst_strcmp.cpp | 26 +++--- tests/auto/selftests/subtest/tst_subtest.cpp | 26 +++--- tests/auto/selftests/tst_selftests.cpp | 26 +++--- .../waitwithoutgui/tst_waitwithoutgui.cpp | 26 +++--- tests/auto/selftests/warnings/tst_warnings.cpp | 26 +++--- tests/auto/symbols/tst_symbols.cpp | 26 +++--- tests/auto/uic/tst_uic.cpp | 26 +++--- tests/auto/uic3/tst_uic3.cpp | 26 +++--- tests/auto/uiloader/tst_screenshot/main.cpp | 26 +++--- tests/auto/uiloader/uiloader/tst_uiloader.cpp | 26 +++--- tests/auto/uiloader/uiloader/uiloader.cpp | 26 +++--- tests/auto/uiloader/uiloader/uiloader.h | 26 +++--- tests/auto/utf8/tst_utf8.cpp | 26 +++--- tests/auto/windowsmobile/test/ddhelper.cpp | 26 +++--- tests/auto/windowsmobile/test/ddhelper.h | 26 +++--- .../auto/windowsmobile/test/tst_windowsmobile.cpp | 26 +++--- tests/auto/windowsmobile/testQMenuBar/main.cpp | 26 +++--- tests/auto/xmlpatterns/tst_xmlpatterns.cpp | 26 +++--- .../test/tst_xmlpatternsdiagnosticsts.cpp | 26 +++--- .../xmlpatternsview/test/tst_xmlpatternsview.cpp | 26 +++--- .../view/FunctionSignaturesView.cpp | 26 +++--- .../xmlpatternsview/view/FunctionSignaturesView.h | 26 +++--- tests/auto/xmlpatternsview/view/MainWindow.cpp | 26 +++--- tests/auto/xmlpatternsview/view/MainWindow.h | 26 +++--- tests/auto/xmlpatternsview/view/TestCaseView.cpp | 26 +++--- tests/auto/xmlpatternsview/view/TestCaseView.h | 26 +++--- tests/auto/xmlpatternsview/view/TestResultView.cpp | 26 +++--- tests/auto/xmlpatternsview/view/TestResultView.h | 26 +++--- tests/auto/xmlpatternsview/view/TreeSortFilter.cpp | 26 +++--- tests/auto/xmlpatternsview/view/TreeSortFilter.h | 26 +++--- tests/auto/xmlpatternsview/view/UserTestCase.cpp | 26 +++--- tests/auto/xmlpatternsview/view/UserTestCase.h | 26 +++--- tests/auto/xmlpatternsview/view/XDTItemItem.cpp | 26 +++--- tests/auto/xmlpatternsview/view/XDTItemItem.h | 26 +++--- tests/auto/xmlpatternsview/view/main.cpp | 26 +++--- tests/auto/xmlpatternsxqts/lib/ASTItem.cpp | 26 +++--- tests/auto/xmlpatternsxqts/lib/ASTItem.h | 26 +++--- .../xmlpatternsxqts/lib/DebugExpressionFactory.cpp | 26 +++--- .../xmlpatternsxqts/lib/DebugExpressionFactory.h | 26 +++--- tests/auto/xmlpatternsxqts/lib/ErrorHandler.cpp | 26 +++--- tests/auto/xmlpatternsxqts/lib/ErrorHandler.h | 26 +++--- tests/auto/xmlpatternsxqts/lib/ErrorItem.cpp | 26 +++--- tests/auto/xmlpatternsxqts/lib/ErrorItem.h | 26 +++--- tests/auto/xmlpatternsxqts/lib/ExitCode.h | 26 +++--- tests/auto/xmlpatternsxqts/lib/ExpressionInfo.cpp | 26 +++--- tests/auto/xmlpatternsxqts/lib/ExpressionInfo.h | 26 +++--- tests/auto/xmlpatternsxqts/lib/ExpressionNamer.cpp | 26 +++--- tests/auto/xmlpatternsxqts/lib/ExpressionNamer.h | 26 +++--- .../xmlpatternsxqts/lib/ExternalSourceLoader.cpp | 26 +++--- .../xmlpatternsxqts/lib/ExternalSourceLoader.h | 26 +++--- tests/auto/xmlpatternsxqts/lib/Global.cpp | 26 +++--- tests/auto/xmlpatternsxqts/lib/Global.h | 26 +++--- tests/auto/xmlpatternsxqts/lib/ResultThreader.cpp | 26 +++--- tests/auto/xmlpatternsxqts/lib/ResultThreader.h | 26 +++--- tests/auto/xmlpatternsxqts/lib/TestBaseLine.cpp | 26 +++--- tests/auto/xmlpatternsxqts/lib/TestBaseLine.h | 26 +++--- tests/auto/xmlpatternsxqts/lib/TestCase.cpp | 26 +++--- tests/auto/xmlpatternsxqts/lib/TestCase.h | 26 +++--- tests/auto/xmlpatternsxqts/lib/TestContainer.cpp | 26 +++--- tests/auto/xmlpatternsxqts/lib/TestContainer.h | 26 +++--- tests/auto/xmlpatternsxqts/lib/TestGroup.cpp | 26 +++--- tests/auto/xmlpatternsxqts/lib/TestGroup.h | 26 +++--- tests/auto/xmlpatternsxqts/lib/TestItem.h | 26 +++--- tests/auto/xmlpatternsxqts/lib/TestResult.cpp | 26 +++--- tests/auto/xmlpatternsxqts/lib/TestResult.h | 26 +++--- .../auto/xmlpatternsxqts/lib/TestResultHandler.cpp | 26 +++--- tests/auto/xmlpatternsxqts/lib/TestResultHandler.h | 26 +++--- tests/auto/xmlpatternsxqts/lib/TestSuite.cpp | 26 +++--- tests/auto/xmlpatternsxqts/lib/TestSuite.h | 26 +++--- .../auto/xmlpatternsxqts/lib/TestSuiteHandler.cpp | 26 +++--- tests/auto/xmlpatternsxqts/lib/TestSuiteHandler.h | 26 +++--- tests/auto/xmlpatternsxqts/lib/TestSuiteResult.cpp | 26 +++--- tests/auto/xmlpatternsxqts/lib/TestSuiteResult.h | 26 +++--- tests/auto/xmlpatternsxqts/lib/TreeItem.cpp | 26 +++--- tests/auto/xmlpatternsxqts/lib/TreeItem.h | 26 +++--- tests/auto/xmlpatternsxqts/lib/TreeModel.cpp | 26 +++--- tests/auto/xmlpatternsxqts/lib/TreeModel.h | 26 +++--- tests/auto/xmlpatternsxqts/lib/Worker.cpp | 26 +++--- tests/auto/xmlpatternsxqts/lib/Worker.h | 26 +++--- tests/auto/xmlpatternsxqts/lib/XMLWriter.cpp | 26 +++--- tests/auto/xmlpatternsxqts/lib/XMLWriter.h | 26 +++--- tests/auto/xmlpatternsxqts/lib/XQTSTestCase.cpp | 26 +++--- tests/auto/xmlpatternsxqts/lib/XQTSTestCase.h | 26 +++--- .../xmlpatternsxqts/lib/XSLTTestSuiteHandler.cpp | 26 +++--- .../xmlpatternsxqts/lib/XSLTTestSuiteHandler.h | 26 +++--- .../lib/docs/XMLIndenterExample.cpp | 26 +++--- .../xmlpatternsxqts/lib/docs/XMLWriterExample.cpp | 26 +++--- .../xmlpatternsxqts/lib/tests/XMLWriterTest.cpp | 26 +++--- .../auto/xmlpatternsxqts/lib/tests/XMLWriterTest.h | 26 +++--- tests/auto/xmlpatternsxqts/test/tst_suitetest.cpp | 26 +++--- tests/auto/xmlpatternsxqts/test/tst_suitetest.h | 26 +++--- .../xmlpatternsxqts/test/tst_xmlpatternsxqts.cpp | 26 +++--- .../auto/xmlpatternsxslts/tst_xmlpatternsxslts.cpp | 26 +++--- tests/benchmarks/blendbench/main.cpp | 26 +++--- tests/benchmarks/containers-associative/main.cpp | 26 +++--- tests/benchmarks/containers-sequential/main.cpp | 26 +++--- tests/benchmarks/events/main.cpp | 26 +++--- tests/benchmarks/opengl/main.cpp | 26 +++--- tests/benchmarks/qapplication/main.cpp | 26 +++--- tests/benchmarks/qbytearray/main.cpp | 26 +++--- tests/benchmarks/qdiriterator/main.cpp | 26 +++--- .../qdiriterator/qfilesystemiterator.cpp | 26 +++--- .../benchmarks/qdiriterator/qfilesystemiterator.h | 26 +++--- tests/benchmarks/qfile/main.cpp | 26 +++--- .../qgraphicsscene/tst_qgraphicsscene.cpp | 26 +++--- .../qgraphicsview/benchapps/chipTest/chip.cpp | 26 +++--- .../qgraphicsview/benchapps/chipTest/chip.h | 26 +++--- .../qgraphicsview/benchapps/chipTest/main.cpp | 26 +++--- .../benchapps/chipTest/mainwindow.cpp | 26 +++--- .../qgraphicsview/benchapps/chipTest/mainwindow.h | 26 +++--- .../qgraphicsview/benchapps/chipTest/view.cpp | 26 +++--- .../qgraphicsview/benchapps/chipTest/view.h | 26 +++--- .../qgraphicsview/benchapps/moveItems/main.cpp | 26 +++--- .../qgraphicsview/benchapps/scrolltest/main.cpp | 26 +++--- tests/benchmarks/qgraphicsview/chiptester/chip.cpp | 26 +++--- tests/benchmarks/qgraphicsview/chiptester/chip.h | 26 +++--- .../qgraphicsview/chiptester/chiptester.cpp | 26 +++--- .../qgraphicsview/chiptester/chiptester.h | 26 +++--- .../benchmarks/qgraphicsview/tst_qgraphicsview.cpp | 26 +++--- .../qgraphicswidget/tst_qgraphicswidget.cpp | 26 +++--- tests/benchmarks/qimagereader/tst_qimagereader.cpp | 26 +++--- tests/benchmarks/qiodevice/main.cpp | 26 +++--- tests/benchmarks/qmetaobject/main.cpp | 26 +++--- tests/benchmarks/qobject/main.cpp | 26 +++--- tests/benchmarks/qobject/object.cpp | 26 +++--- tests/benchmarks/qobject/object.h | 26 +++--- tests/benchmarks/qpainter/tst_qpainter.cpp | 26 +++--- tests/benchmarks/qpixmap/tst_qpixmap.cpp | 26 +++--- tests/benchmarks/qrect/main.cpp | 26 +++--- tests/benchmarks/qregexp/main.cpp | 26 +++--- tests/benchmarks/qregion/main.cpp | 26 +++--- tests/benchmarks/qstringlist/main.cpp | 26 +++--- tests/benchmarks/qstylesheetstyle/main.cpp | 26 +++--- tests/benchmarks/qtemporaryfile/main.cpp | 26 +++--- tests/benchmarks/qtestlib-simple/main.cpp | 26 +++--- tests/benchmarks/qtransform/tst_qtransform.cpp | 26 +++--- tests/benchmarks/qtwidgets/mainwindow.cpp | 26 +++--- tests/benchmarks/qtwidgets/mainwindow.h | 26 +++--- tests/benchmarks/qtwidgets/tst_qtwidgets.cpp | 26 +++--- tests/benchmarks/qvariant/tst_qvariant.cpp | 26 +++--- tests/benchmarks/qwidget/tst_qwidget.cpp | 26 +++--- tests/shared/util.h | 26 +++--- tools/activeqt/dumpcpp/main.cpp | 26 +++--- tools/activeqt/dumpdoc/main.cpp | 26 +++--- tools/activeqt/testcon/ambientproperties.cpp | 26 +++--- tools/activeqt/testcon/ambientproperties.h | 26 +++--- tools/activeqt/testcon/ambientproperties.ui | 26 +++--- tools/activeqt/testcon/changeproperties.cpp | 26 +++--- tools/activeqt/testcon/changeproperties.h | 26 +++--- tools/activeqt/testcon/changeproperties.ui | 26 +++--- tools/activeqt/testcon/controlinfo.cpp | 26 +++--- tools/activeqt/testcon/controlinfo.h | 26 +++--- tools/activeqt/testcon/controlinfo.ui | 26 +++--- tools/activeqt/testcon/docuwindow.cpp | 26 +++--- tools/activeqt/testcon/docuwindow.h | 26 +++--- tools/activeqt/testcon/invokemethod.cpp | 26 +++--- tools/activeqt/testcon/invokemethod.h | 26 +++--- tools/activeqt/testcon/invokemethod.ui | 26 +++--- tools/activeqt/testcon/main.cpp | 26 +++--- tools/activeqt/testcon/mainwindow.cpp | 26 +++--- tools/activeqt/testcon/mainwindow.h | 26 +++--- tools/activeqt/testcon/mainwindow.ui | 26 +++--- tools/assistant/compat/config.cpp | 26 +++--- tools/assistant/compat/config.h | 26 +++--- tools/assistant/compat/docuparser.cpp | 26 +++--- tools/assistant/compat/docuparser.h | 26 +++--- tools/assistant/compat/fontsettingsdialog.cpp | 26 +++--- tools/assistant/compat/fontsettingsdialog.h | 26 +++--- tools/assistant/compat/helpdialog.cpp | 26 +++--- tools/assistant/compat/helpdialog.h | 26 +++--- tools/assistant/compat/helpdialog.ui | 26 +++--- tools/assistant/compat/helpwindow.cpp | 26 +++--- tools/assistant/compat/helpwindow.h | 26 +++--- tools/assistant/compat/index.cpp | 26 +++--- tools/assistant/compat/index.h | 26 +++--- tools/assistant/compat/lib/qassistantclient.cpp | 26 +++--- tools/assistant/compat/lib/qassistantclient.h | 26 +++--- .../assistant/compat/lib/qassistantclient_global.h | 26 +++--- tools/assistant/compat/main.cpp | 26 +++--- tools/assistant/compat/mainwindow.cpp | 26 +++--- tools/assistant/compat/mainwindow.h | 26 +++--- tools/assistant/compat/mainwindow.ui | 26 +++--- tools/assistant/compat/profile.cpp | 26 +++--- tools/assistant/compat/profile.h | 26 +++--- tools/assistant/compat/tabbedbrowser.cpp | 26 +++--- tools/assistant/compat/tabbedbrowser.h | 26 +++--- tools/assistant/compat/tabbedbrowser.ui | 26 +++--- tools/assistant/compat/topicchooser.cpp | 26 +++--- tools/assistant/compat/topicchooser.h | 26 +++--- tools/assistant/compat/topicchooser.ui | 26 +++--- tools/assistant/lib/qhelp_global.h | 26 +++--- tools/assistant/lib/qhelpcollectionhandler.cpp | 26 +++--- tools/assistant/lib/qhelpcollectionhandler_p.h | 26 +++--- tools/assistant/lib/qhelpcontentwidget.cpp | 26 +++--- tools/assistant/lib/qhelpcontentwidget.h | 26 +++--- tools/assistant/lib/qhelpdatainterface.cpp | 26 +++--- tools/assistant/lib/qhelpdatainterface_p.h | 26 +++--- tools/assistant/lib/qhelpdbreader.cpp | 26 +++--- tools/assistant/lib/qhelpdbreader_p.h | 26 +++--- tools/assistant/lib/qhelpengine.cpp | 26 +++--- tools/assistant/lib/qhelpengine.h | 26 +++--- tools/assistant/lib/qhelpengine_p.h | 26 +++--- tools/assistant/lib/qhelpenginecore.cpp | 26 +++--- tools/assistant/lib/qhelpenginecore.h | 26 +++--- tools/assistant/lib/qhelpgenerator.cpp | 26 +++--- tools/assistant/lib/qhelpgenerator_p.h | 26 +++--- tools/assistant/lib/qhelpindexwidget.cpp | 26 +++--- tools/assistant/lib/qhelpindexwidget.h | 26 +++--- tools/assistant/lib/qhelpprojectdata.cpp | 26 +++--- tools/assistant/lib/qhelpprojectdata_p.h | 26 +++--- tools/assistant/lib/qhelpsearchengine.cpp | 26 +++--- tools/assistant/lib/qhelpsearchengine.h | 26 +++--- tools/assistant/lib/qhelpsearchindex_default.cpp | 26 +++--- tools/assistant/lib/qhelpsearchindex_default_p.h | 26 +++--- .../lib/qhelpsearchindexreader_clucene.cpp | 26 +++--- .../lib/qhelpsearchindexreader_clucene_p.h | 26 +++--- .../lib/qhelpsearchindexreader_default.cpp | 26 +++--- .../lib/qhelpsearchindexreader_default_p.h | 26 +++--- .../lib/qhelpsearchindexwriter_clucene.cpp | 26 +++--- .../lib/qhelpsearchindexwriter_clucene_p.h | 26 +++--- .../lib/qhelpsearchindexwriter_default.cpp | 26 +++--- .../lib/qhelpsearchindexwriter_default_p.h | 26 +++--- tools/assistant/lib/qhelpsearchquerywidget.cpp | 26 +++--- tools/assistant/lib/qhelpsearchquerywidget.h | 26 +++--- tools/assistant/lib/qhelpsearchresultwidget.cpp | 26 +++--- tools/assistant/lib/qhelpsearchresultwidget.h | 26 +++--- tools/assistant/tools/assistant/aboutdialog.cpp | 26 +++--- tools/assistant/tools/assistant/aboutdialog.h | 26 +++--- .../assistant/tools/assistant/bookmarkmanager.cpp | 26 +++--- tools/assistant/tools/assistant/bookmarkmanager.h | 26 +++--- tools/assistant/tools/assistant/centralwidget.cpp | 26 +++--- tools/assistant/tools/assistant/centralwidget.h | 26 +++--- tools/assistant/tools/assistant/cmdlineparser.cpp | 26 +++--- tools/assistant/tools/assistant/cmdlineparser.h | 26 +++--- tools/assistant/tools/assistant/contentwindow.cpp | 26 +++--- tools/assistant/tools/assistant/contentwindow.h | 26 +++--- .../assistant/tools/assistant/filternamedialog.cpp | 26 +++--- tools/assistant/tools/assistant/filternamedialog.h | 26 +++--- tools/assistant/tools/assistant/helpviewer.cpp | 26 +++--- tools/assistant/tools/assistant/helpviewer.h | 26 +++--- tools/assistant/tools/assistant/indexwindow.cpp | 26 +++--- tools/assistant/tools/assistant/indexwindow.h | 26 +++--- tools/assistant/tools/assistant/installdialog.cpp | 26 +++--- tools/assistant/tools/assistant/installdialog.h | 26 +++--- tools/assistant/tools/assistant/main.cpp | 26 +++--- tools/assistant/tools/assistant/mainwindow.cpp | 26 +++--- tools/assistant/tools/assistant/mainwindow.h | 26 +++--- .../tools/assistant/preferencesdialog.cpp | 26 +++--- .../assistant/tools/assistant/preferencesdialog.h | 26 +++--- tools/assistant/tools/assistant/qtdocinstaller.cpp | 26 +++--- tools/assistant/tools/assistant/qtdocinstaller.h | 26 +++--- tools/assistant/tools/assistant/remotecontrol.cpp | 26 +++--- tools/assistant/tools/assistant/remotecontrol.h | 26 +++--- .../assistant/tools/assistant/remotecontrol_win.h | 26 +++--- tools/assistant/tools/assistant/searchwidget.cpp | 26 +++--- tools/assistant/tools/assistant/searchwidget.h | 26 +++--- tools/assistant/tools/assistant/topicchooser.cpp | 26 +++--- tools/assistant/tools/assistant/topicchooser.h | 26 +++--- .../assistant/tools/qcollectiongenerator/main.cpp | 26 +++--- tools/assistant/tools/qhelpconverter/adpreader.cpp | 26 +++--- tools/assistant/tools/qhelpconverter/adpreader.h | 26 +++--- .../tools/qhelpconverter/conversionwizard.cpp | 26 +++--- .../tools/qhelpconverter/conversionwizard.h | 26 +++--- tools/assistant/tools/qhelpconverter/filespage.cpp | 26 +++--- tools/assistant/tools/qhelpconverter/filespage.h | 26 +++--- .../assistant/tools/qhelpconverter/filterpage.cpp | 26 +++--- tools/assistant/tools/qhelpconverter/filterpage.h | 26 +++--- .../assistant/tools/qhelpconverter/finishpage.cpp | 26 +++--- tools/assistant/tools/qhelpconverter/finishpage.h | 26 +++--- .../assistant/tools/qhelpconverter/generalpage.cpp | 26 +++--- tools/assistant/tools/qhelpconverter/generalpage.h | 26 +++--- .../assistant/tools/qhelpconverter/helpwindow.cpp | 26 +++--- tools/assistant/tools/qhelpconverter/helpwindow.h | 26 +++--- .../tools/qhelpconverter/identifierpage.cpp | 26 +++--- .../tools/qhelpconverter/identifierpage.h | 26 +++--- tools/assistant/tools/qhelpconverter/inputpage.cpp | 26 +++--- tools/assistant/tools/qhelpconverter/inputpage.h | 26 +++--- tools/assistant/tools/qhelpconverter/main.cpp | 26 +++--- .../assistant/tools/qhelpconverter/outputpage.cpp | 26 +++--- tools/assistant/tools/qhelpconverter/outputpage.h | 26 +++--- tools/assistant/tools/qhelpconverter/pathpage.cpp | 26 +++--- tools/assistant/tools/qhelpconverter/pathpage.h | 26 +++--- .../assistant/tools/qhelpconverter/qhcpwriter.cpp | 26 +++--- tools/assistant/tools/qhelpconverter/qhcpwriter.h | 26 +++--- tools/assistant/tools/qhelpconverter/qhpwriter.cpp | 26 +++--- tools/assistant/tools/qhelpconverter/qhpwriter.h | 26 +++--- tools/assistant/tools/qhelpgenerator/main.cpp | 26 +++--- tools/assistant/tools/shared/helpgenerator.cpp | 26 +++--- tools/assistant/tools/shared/helpgenerator.h | 26 +++--- tools/checksdk/cesdkhandler.cpp | 26 +++--- tools/checksdk/cesdkhandler.h | 26 +++--- tools/checksdk/main.cpp | 26 +++--- tools/configure/configure_pch.h | 26 +++--- tools/configure/configureapp.cpp | 26 +++--- tools/configure/configureapp.h | 26 +++--- tools/configure/environment.cpp | 26 +++--- tools/configure/environment.h | 26 +++--- tools/configure/main.cpp | 26 +++--- tools/configure/tools.cpp | 26 +++--- tools/configure/tools.h | 26 +++--- tools/designer/data/generate_header.xsl | 26 +++--- tools/designer/data/generate_impl.xsl | 26 +++--- .../src/components/buddyeditor/buddyeditor.cpp | 26 +++--- .../src/components/buddyeditor/buddyeditor.h | 26 +++--- .../components/buddyeditor/buddyeditor_global.h | 26 +++--- .../buddyeditor/buddyeditor_instance.cpp | 26 +++--- .../components/buddyeditor/buddyeditor_plugin.cpp | 26 +++--- .../components/buddyeditor/buddyeditor_plugin.h | 26 +++--- .../components/buddyeditor/buddyeditor_tool.cpp | 26 +++--- .../src/components/buddyeditor/buddyeditor_tool.h | 26 +++--- .../components/formeditor/brushmanagerproxy.cpp | 26 +++--- .../src/components/formeditor/brushmanagerproxy.h | 26 +++--- .../formeditor/default_actionprovider.cpp | 26 +++--- .../components/formeditor/default_actionprovider.h | 26 +++--- .../components/formeditor/default_container.cpp | 26 +++--- .../src/components/formeditor/default_container.h | 26 +++--- .../formeditor/default_layoutdecoration.cpp | 26 +++--- .../formeditor/default_layoutdecoration.h | 26 +++--- .../components/formeditor/deviceprofiledialog.cpp | 26 +++--- .../components/formeditor/deviceprofiledialog.h | 26 +++--- .../src/components/formeditor/dpi_chooser.cpp | 26 +++--- .../src/components/formeditor/dpi_chooser.h | 26 +++--- .../components/formeditor/embeddedoptionspage.cpp | 26 +++--- .../components/formeditor/embeddedoptionspage.h | 26 +++--- .../src/components/formeditor/formeditor.cpp | 26 +++--- .../src/components/formeditor/formeditor.h | 26 +++--- .../src/components/formeditor/formeditor_global.h | 26 +++--- .../formeditor/formeditor_optionspage.cpp | 26 +++--- .../components/formeditor/formeditor_optionspage.h | 26 +++--- .../src/components/formeditor/formwindow.cpp | 26 +++--- .../src/components/formeditor/formwindow.h | 26 +++--- .../components/formeditor/formwindow_dnditem.cpp | 26 +++--- .../src/components/formeditor/formwindow_dnditem.h | 26 +++--- .../formeditor/formwindow_widgetstack.cpp | 26 +++--- .../components/formeditor/formwindow_widgetstack.h | 26 +++--- .../src/components/formeditor/formwindowcursor.cpp | 26 +++--- .../src/components/formeditor/formwindowcursor.h | 26 +++--- .../components/formeditor/formwindowmanager.cpp | 26 +++--- .../src/components/formeditor/formwindowmanager.h | 26 +++--- .../components/formeditor/formwindowsettings.cpp | 26 +++--- .../src/components/formeditor/formwindowsettings.h | 26 +++--- .../components/formeditor/formwindowsettings.ui | 26 +++--- .../src/components/formeditor/iconcache.cpp | 26 +++--- .../designer/src/components/formeditor/iconcache.h | 26 +++--- .../formeditor/itemview_propertysheet.cpp | 26 +++--- .../components/formeditor/itemview_propertysheet.h | 26 +++--- .../components/formeditor/layout_propertysheet.cpp | 26 +++--- .../components/formeditor/layout_propertysheet.h | 26 +++--- .../components/formeditor/line_propertysheet.cpp | 26 +++--- .../src/components/formeditor/line_propertysheet.h | 26 +++--- .../components/formeditor/previewactiongroup.cpp | 26 +++--- .../src/components/formeditor/previewactiongroup.h | 26 +++--- .../components/formeditor/qdesigner_resource.cpp | 26 +++--- .../src/components/formeditor/qdesigner_resource.h | 26 +++--- .../formeditor/qlayoutwidget_propertysheet.cpp | 26 +++--- .../formeditor/qlayoutwidget_propertysheet.h | 26 +++--- .../formeditor/qmainwindow_container.cpp | 26 +++--- .../components/formeditor/qmainwindow_container.h | 26 +++--- .../components/formeditor/qmdiarea_container.cpp | 26 +++--- .../src/components/formeditor/qmdiarea_container.h | 26 +++--- .../src/components/formeditor/qtbrushmanager.cpp | 26 +++--- .../src/components/formeditor/qtbrushmanager.h | 26 +++--- .../components/formeditor/qwizard_container.cpp | 26 +++--- .../src/components/formeditor/qwizard_container.h | 26 +++--- .../components/formeditor/qworkspace_container.cpp | 26 +++--- .../components/formeditor/qworkspace_container.h | 26 +++--- .../components/formeditor/spacer_propertysheet.cpp | 26 +++--- .../components/formeditor/spacer_propertysheet.h | 26 +++--- .../components/formeditor/templateoptionspage.cpp | 26 +++--- .../components/formeditor/templateoptionspage.h | 26 +++--- .../components/formeditor/tool_widgeteditor.cpp | 26 +++--- .../src/components/formeditor/tool_widgeteditor.h | 26 +++--- .../src/components/formeditor/widgetselection.cpp | 26 +++--- .../src/components/formeditor/widgetselection.h | 26 +++--- tools/designer/src/components/lib/lib_pch.h | 26 +++--- .../src/components/lib/qdesigner_components.cpp | 26 +++--- .../components/objectinspector/objectinspector.cpp | 26 +++--- .../components/objectinspector/objectinspector.h | 26 +++--- .../objectinspector/objectinspector_global.h | 26 +++--- .../objectinspector/objectinspectormodel.cpp | 26 +++--- .../objectinspector/objectinspectormodel_p.h | 26 +++--- .../propertyeditor/brushpropertymanager.cpp | 26 +++--- .../propertyeditor/brushpropertymanager.h | 26 +++--- .../src/components/propertyeditor/defs.cpp | 26 +++--- .../designer/src/components/propertyeditor/defs.h | 26 +++--- .../propertyeditor/designerpropertymanager.cpp | 26 +++--- .../propertyeditor/designerpropertymanager.h | 26 +++--- .../src/components/propertyeditor/fontmapping.xml | 26 +++--- .../propertyeditor/fontpropertymanager.cpp | 26 +++--- .../propertyeditor/fontpropertymanager.h | 26 +++--- .../propertyeditor/newdynamicpropertydialog.cpp | 26 +++--- .../propertyeditor/newdynamicpropertydialog.h | 26 +++--- .../components/propertyeditor/paletteeditor.cpp | 26 +++--- .../src/components/propertyeditor/paletteeditor.h | 26 +++--- .../src/components/propertyeditor/paletteeditor.ui | 26 +++--- .../propertyeditor/paletteeditorbutton.cpp | 26 +++--- .../propertyeditor/paletteeditorbutton.h | 26 +++--- .../src/components/propertyeditor/previewframe.cpp | 26 +++--- .../src/components/propertyeditor/previewframe.h | 26 +++--- .../components/propertyeditor/previewwidget.cpp | 26 +++--- .../src/components/propertyeditor/previewwidget.h | 26 +++--- .../src/components/propertyeditor/previewwidget.ui | 26 +++--- .../components/propertyeditor/propertyeditor.cpp | 26 +++--- .../src/components/propertyeditor/propertyeditor.h | 26 +++--- .../propertyeditor/propertyeditor_global.h | 26 +++--- .../propertyeditor/qlonglongvalidator.cpp | 26 +++--- .../components/propertyeditor/qlonglongvalidator.h | 26 +++--- .../components/propertyeditor/stringlisteditor.cpp | 26 +++--- .../components/propertyeditor/stringlisteditor.h | 26 +++--- .../components/propertyeditor/stringlisteditor.ui | 26 +++--- .../propertyeditor/stringlisteditorbutton.cpp | 26 +++--- .../propertyeditor/stringlisteditorbutton.h | 26 +++--- .../components/signalsloteditor/connectdialog.cpp | 26 +++--- .../components/signalsloteditor/connectdialog_p.h | 26 +++--- .../signalsloteditor/signalslot_utils.cpp | 26 +++--- .../signalsloteditor/signalslot_utils_p.h | 26 +++--- .../signalsloteditor/signalsloteditor.cpp | 26 +++--- .../components/signalsloteditor/signalsloteditor.h | 26 +++--- .../signalsloteditor/signalsloteditor_global.h | 26 +++--- .../signalsloteditor/signalsloteditor_instance.cpp | 26 +++--- .../signalsloteditor/signalsloteditor_p.h | 26 +++--- .../signalsloteditor/signalsloteditor_plugin.cpp | 26 +++--- .../signalsloteditor/signalsloteditor_plugin.h | 26 +++--- .../signalsloteditor/signalsloteditor_tool.cpp | 26 +++--- .../signalsloteditor/signalsloteditor_tool.h | 26 +++--- .../signalsloteditor/signalsloteditorwindow.cpp | 26 +++--- .../signalsloteditor/signalsloteditorwindow.h | 26 +++--- .../components/tabordereditor/tabordereditor.cpp | 26 +++--- .../src/components/tabordereditor/tabordereditor.h | 26 +++--- .../tabordereditor/tabordereditor_global.h | 26 +++--- .../tabordereditor/tabordereditor_instance.cpp | 26 +++--- .../tabordereditor/tabordereditor_plugin.cpp | 26 +++--- .../tabordereditor/tabordereditor_plugin.h | 26 +++--- .../tabordereditor/tabordereditor_tool.cpp | 26 +++--- .../tabordereditor/tabordereditor_tool.h | 26 +++--- .../src/components/taskmenu/button_taskmenu.cpp | 26 +++--- .../src/components/taskmenu/button_taskmenu.h | 26 +++--- .../src/components/taskmenu/combobox_taskmenu.cpp | 26 +++--- .../src/components/taskmenu/combobox_taskmenu.h | 26 +++--- .../taskmenu/containerwidget_taskmenu.cpp | 26 +++--- .../components/taskmenu/containerwidget_taskmenu.h | 26 +++--- .../src/components/taskmenu/groupbox_taskmenu.cpp | 26 +++--- .../src/components/taskmenu/groupbox_taskmenu.h | 26 +++--- .../src/components/taskmenu/inplace_editor.cpp | 26 +++--- .../src/components/taskmenu/inplace_editor.h | 26 +++--- .../components/taskmenu/inplace_widget_helper.cpp | 26 +++--- .../components/taskmenu/inplace_widget_helper.h | 26 +++--- .../src/components/taskmenu/itemlisteditor.cpp | 26 +++--- .../src/components/taskmenu/itemlisteditor.h | 26 +++--- .../src/components/taskmenu/itemlisteditor.ui | 26 +++--- .../src/components/taskmenu/label_taskmenu.cpp | 26 +++--- .../src/components/taskmenu/label_taskmenu.h | 26 +++--- .../src/components/taskmenu/layouttaskmenu.cpp | 26 +++--- .../src/components/taskmenu/layouttaskmenu.h | 26 +++--- .../src/components/taskmenu/lineedit_taskmenu.cpp | 26 +++--- .../src/components/taskmenu/lineedit_taskmenu.h | 26 +++--- .../components/taskmenu/listwidget_taskmenu.cpp | 26 +++--- .../src/components/taskmenu/listwidget_taskmenu.h | 26 +++--- .../src/components/taskmenu/listwidgeteditor.cpp | 26 +++--- .../src/components/taskmenu/listwidgeteditor.h | 26 +++--- .../src/components/taskmenu/menutaskmenu.cpp | 26 +++--- .../src/components/taskmenu/menutaskmenu.h | 26 +++--- .../components/taskmenu/tablewidget_taskmenu.cpp | 26 +++--- .../src/components/taskmenu/tablewidget_taskmenu.h | 26 +++--- .../src/components/taskmenu/tablewidgeteditor.cpp | 26 +++--- .../src/components/taskmenu/tablewidgeteditor.h | 26 +++--- .../src/components/taskmenu/tablewidgeteditor.ui | 26 +++--- .../src/components/taskmenu/taskmenu_component.cpp | 26 +++--- .../src/components/taskmenu/taskmenu_component.h | 26 +++--- .../src/components/taskmenu/taskmenu_global.h | 26 +++--- .../src/components/taskmenu/textedit_taskmenu.cpp | 26 +++--- .../src/components/taskmenu/textedit_taskmenu.h | 26 +++--- .../src/components/taskmenu/toolbar_taskmenu.cpp | 26 +++--- .../src/components/taskmenu/toolbar_taskmenu.h | 26 +++--- .../components/taskmenu/treewidget_taskmenu.cpp | 26 +++--- .../src/components/taskmenu/treewidget_taskmenu.h | 26 +++--- .../src/components/taskmenu/treewidgeteditor.cpp | 26 +++--- .../src/components/taskmenu/treewidgeteditor.h | 26 +++--- .../src/components/taskmenu/treewidgeteditor.ui | 26 +++--- .../src/components/widgetbox/widgetbox.cpp | 26 +++--- .../designer/src/components/widgetbox/widgetbox.h | 26 +++--- .../src/components/widgetbox/widgetbox.xml | 26 +++--- .../src/components/widgetbox/widgetbox_dnditem.cpp | 26 +++--- .../src/components/widgetbox/widgetbox_dnditem.h | 26 +++--- .../src/components/widgetbox/widgetbox_global.h | 26 +++--- .../widgetbox/widgetboxcategorylistview.cpp | 26 +++--- .../widgetbox/widgetboxcategorylistview.h | 26 +++--- .../components/widgetbox/widgetboxtreewidget.cpp | 26 +++--- .../src/components/widgetbox/widgetboxtreewidget.h | 26 +++--- tools/designer/src/designer/appfontdialog.cpp | 26 +++--- tools/designer/src/designer/appfontdialog.h | 26 +++--- tools/designer/src/designer/assistantclient.cpp | 26 +++--- tools/designer/src/designer/assistantclient.h | 26 +++--- tools/designer/src/designer/designer_enums.h | 26 +++--- tools/designer/src/designer/main.cpp | 26 +++--- tools/designer/src/designer/mainwindow.cpp | 26 +++--- tools/designer/src/designer/mainwindow.h | 26 +++--- tools/designer/src/designer/newform.cpp | 26 +++--- tools/designer/src/designer/newform.h | 26 +++--- tools/designer/src/designer/preferencesdialog.cpp | 26 +++--- tools/designer/src/designer/preferencesdialog.h | 26 +++--- tools/designer/src/designer/qdesigner.cpp | 26 +++--- tools/designer/src/designer/qdesigner.h | 26 +++--- tools/designer/src/designer/qdesigner_actions.cpp | 26 +++--- tools/designer/src/designer/qdesigner_actions.h | 26 +++--- .../src/designer/qdesigner_appearanceoptions.cpp | 26 +++--- .../src/designer/qdesigner_appearanceoptions.h | 26 +++--- .../designer/src/designer/qdesigner_formwindow.cpp | 26 +++--- tools/designer/src/designer/qdesigner_formwindow.h | 26 +++--- tools/designer/src/designer/qdesigner_pch.h | 26 +++--- tools/designer/src/designer/qdesigner_server.cpp | 26 +++--- tools/designer/src/designer/qdesigner_server.h | 26 +++--- tools/designer/src/designer/qdesigner_settings.cpp | 26 +++--- tools/designer/src/designer/qdesigner_settings.h | 26 +++--- .../designer/src/designer/qdesigner_toolwindow.cpp | 26 +++--- tools/designer/src/designer/qdesigner_toolwindow.h | 26 +++--- .../designer/src/designer/qdesigner_workbench.cpp | 26 +++--- tools/designer/src/designer/qdesigner_workbench.h | 26 +++--- tools/designer/src/designer/saveformastemplate.cpp | 26 +++--- tools/designer/src/designer/saveformastemplate.h | 26 +++--- tools/designer/src/designer/saveformastemplate.ui | 26 +++--- tools/designer/src/designer/versiondialog.cpp | 26 +++--- tools/designer/src/designer/versiondialog.h | 26 +++--- .../src/lib/components/qdesigner_components.h | 26 +++--- .../lib/components/qdesigner_components_global.h | 26 +++--- .../src/lib/extension/default_extensionfactory.cpp | 26 +++--- .../src/lib/extension/default_extensionfactory.h | 26 +++--- tools/designer/src/lib/extension/extension.cpp | 26 +++--- tools/designer/src/lib/extension/extension.h | 26 +++--- .../designer/src/lib/extension/extension_global.h | 26 +++--- .../src/lib/extension/qextensionmanager.cpp | 26 +++--- .../designer/src/lib/extension/qextensionmanager.h | 26 +++--- tools/designer/src/lib/lib_pch.h | 26 +++--- .../designer/src/lib/sdk/abstractactioneditor.cpp | 26 +++--- tools/designer/src/lib/sdk/abstractactioneditor.h | 26 +++--- tools/designer/src/lib/sdk/abstractbrushmanager.h | 26 +++--- tools/designer/src/lib/sdk/abstractdialoggui.cpp | 26 +++--- tools/designer/src/lib/sdk/abstractdialoggui_p.h | 26 +++--- tools/designer/src/lib/sdk/abstractdnditem.h | 26 +++--- tools/designer/src/lib/sdk/abstractformeditor.cpp | 26 +++--- tools/designer/src/lib/sdk/abstractformeditor.h | 26 +++--- .../src/lib/sdk/abstractformeditorplugin.cpp | 26 +++--- .../src/lib/sdk/abstractformeditorplugin.h | 26 +++--- tools/designer/src/lib/sdk/abstractformwindow.cpp | 26 +++--- tools/designer/src/lib/sdk/abstractformwindow.h | 26 +++--- .../src/lib/sdk/abstractformwindowcursor.cpp | 26 +++--- .../src/lib/sdk/abstractformwindowcursor.h | 26 +++--- .../src/lib/sdk/abstractformwindowmanager.cpp | 26 +++--- .../src/lib/sdk/abstractformwindowmanager.h | 26 +++--- .../src/lib/sdk/abstractformwindowtool.cpp | 26 +++--- .../designer/src/lib/sdk/abstractformwindowtool.h | 26 +++--- tools/designer/src/lib/sdk/abstracticoncache.h | 26 +++--- tools/designer/src/lib/sdk/abstractintegration.cpp | 26 +++--- tools/designer/src/lib/sdk/abstractintegration.h | 26 +++--- .../designer/src/lib/sdk/abstractintrospection.cpp | 26 +++--- .../designer/src/lib/sdk/abstractintrospection_p.h | 26 +++--- tools/designer/src/lib/sdk/abstractlanguage.h | 26 +++--- .../designer/src/lib/sdk/abstractmetadatabase.cpp | 26 +++--- tools/designer/src/lib/sdk/abstractmetadatabase.h | 26 +++--- .../designer/src/lib/sdk/abstractnewformwidget.cpp | 26 +++--- .../designer/src/lib/sdk/abstractnewformwidget_p.h | 26 +++--- .../src/lib/sdk/abstractobjectinspector.cpp | 26 +++--- .../designer/src/lib/sdk/abstractobjectinspector.h | 26 +++--- tools/designer/src/lib/sdk/abstractoptionspage_p.h | 26 +++--- .../src/lib/sdk/abstractpromotioninterface.cpp | 26 +++--- .../src/lib/sdk/abstractpromotioninterface.h | 26 +++--- .../src/lib/sdk/abstractpropertyeditor.cpp | 26 +++--- .../designer/src/lib/sdk/abstractpropertyeditor.h | 26 +++--- .../src/lib/sdk/abstractresourcebrowser.cpp | 26 +++--- .../designer/src/lib/sdk/abstractresourcebrowser.h | 26 +++--- tools/designer/src/lib/sdk/abstractsettings_p.h | 26 +++--- tools/designer/src/lib/sdk/abstractwidgetbox.cpp | 26 +++--- tools/designer/src/lib/sdk/abstractwidgetbox.h | 26 +++--- .../src/lib/sdk/abstractwidgetdatabase.cpp | 26 +++--- .../designer/src/lib/sdk/abstractwidgetdatabase.h | 26 +++--- .../designer/src/lib/sdk/abstractwidgetfactory.cpp | 26 +++--- tools/designer/src/lib/sdk/abstractwidgetfactory.h | 26 +++--- tools/designer/src/lib/sdk/dynamicpropertysheet.h | 26 +++--- tools/designer/src/lib/sdk/extrainfo.cpp | 26 +++--- tools/designer/src/lib/sdk/extrainfo.h | 26 +++--- tools/designer/src/lib/sdk/layoutdecoration.h | 26 +++--- tools/designer/src/lib/sdk/membersheet.h | 26 +++--- tools/designer/src/lib/sdk/propertysheet.h | 26 +++--- tools/designer/src/lib/sdk/script.cpp | 26 +++--- tools/designer/src/lib/sdk/script_p.h | 26 +++--- tools/designer/src/lib/sdk/sdk_global.h | 26 +++--- tools/designer/src/lib/sdk/taskmenu.h | 26 +++--- tools/designer/src/lib/shared/actioneditor.cpp | 26 +++--- tools/designer/src/lib/shared/actioneditor_p.h | 26 +++--- tools/designer/src/lib/shared/actionprovider_p.h | 26 +++--- tools/designer/src/lib/shared/actionrepository.cpp | 26 +++--- tools/designer/src/lib/shared/actionrepository_p.h | 26 +++--- tools/designer/src/lib/shared/codedialog.cpp | 26 +++--- tools/designer/src/lib/shared/codedialog_p.h | 26 +++--- tools/designer/src/lib/shared/connectionedit.cpp | 26 +++--- tools/designer/src/lib/shared/connectionedit_p.h | 26 +++--- tools/designer/src/lib/shared/csshighlighter.cpp | 26 +++--- tools/designer/src/lib/shared/csshighlighter_p.h | 26 +++--- tools/designer/src/lib/shared/deviceprofile.cpp | 26 +++--- tools/designer/src/lib/shared/deviceprofile_p.h | 26 +++--- tools/designer/src/lib/shared/dialoggui.cpp | 26 +++--- tools/designer/src/lib/shared/dialoggui_p.h | 26 +++--- tools/designer/src/lib/shared/extensionfactory_p.h | 26 +++--- tools/designer/src/lib/shared/filterwidget.cpp | 26 +++--- tools/designer/src/lib/shared/filterwidget_p.h | 26 +++--- tools/designer/src/lib/shared/formlayoutmenu.cpp | 26 +++--- tools/designer/src/lib/shared/formlayoutmenu_p.h | 26 +++--- tools/designer/src/lib/shared/formwindowbase.cpp | 26 +++--- tools/designer/src/lib/shared/formwindowbase_p.h | 26 +++--- tools/designer/src/lib/shared/grid.cpp | 26 +++--- tools/designer/src/lib/shared/grid_p.h | 26 +++--- tools/designer/src/lib/shared/gridpanel.cpp | 26 +++--- tools/designer/src/lib/shared/gridpanel_p.h | 26 +++--- tools/designer/src/lib/shared/htmlhighlighter.cpp | 26 +++--- tools/designer/src/lib/shared/htmlhighlighter_p.h | 26 +++--- tools/designer/src/lib/shared/iconloader.cpp | 26 +++--- tools/designer/src/lib/shared/iconloader_p.h | 26 +++--- tools/designer/src/lib/shared/iconselector.cpp | 26 +++--- tools/designer/src/lib/shared/iconselector_p.h | 26 +++--- tools/designer/src/lib/shared/invisible_widget.cpp | 26 +++--- tools/designer/src/lib/shared/invisible_widget_p.h | 26 +++--- tools/designer/src/lib/shared/layout.cpp | 26 +++--- tools/designer/src/lib/shared/layout_p.h | 26 +++--- tools/designer/src/lib/shared/layoutinfo.cpp | 26 +++--- tools/designer/src/lib/shared/layoutinfo_p.h | 26 +++--- tools/designer/src/lib/shared/metadatabase.cpp | 26 +++--- tools/designer/src/lib/shared/metadatabase_p.h | 26 +++--- tools/designer/src/lib/shared/morphmenu.cpp | 26 +++--- tools/designer/src/lib/shared/morphmenu_p.h | 26 +++--- tools/designer/src/lib/shared/newactiondialog.cpp | 26 +++--- tools/designer/src/lib/shared/newactiondialog.ui | 26 +++--- tools/designer/src/lib/shared/newactiondialog_p.h | 26 +++--- tools/designer/src/lib/shared/newformwidget.cpp | 26 +++--- tools/designer/src/lib/shared/newformwidget.ui | 26 +++--- tools/designer/src/lib/shared/newformwidget_p.h | 26 +++--- tools/designer/src/lib/shared/orderdialog.cpp | 26 +++--- tools/designer/src/lib/shared/orderdialog.ui | 26 +++--- tools/designer/src/lib/shared/orderdialog_p.h | 26 +++--- tools/designer/src/lib/shared/plaintexteditor.cpp | 26 +++--- tools/designer/src/lib/shared/plaintexteditor_p.h | 26 +++--- tools/designer/src/lib/shared/plugindialog.cpp | 26 +++--- tools/designer/src/lib/shared/plugindialog.ui | 26 +++--- tools/designer/src/lib/shared/plugindialog_p.h | 26 +++--- tools/designer/src/lib/shared/pluginmanager.cpp | 26 +++--- tools/designer/src/lib/shared/pluginmanager_p.h | 26 +++--- .../src/lib/shared/previewconfigurationwidget.cpp | 26 +++--- .../src/lib/shared/previewconfigurationwidget_p.h | 26 +++--- tools/designer/src/lib/shared/previewmanager.cpp | 26 +++--- tools/designer/src/lib/shared/previewmanager_p.h | 26 +++--- tools/designer/src/lib/shared/promotionmodel.cpp | 26 +++--- tools/designer/src/lib/shared/promotionmodel_p.h | 26 +++--- .../designer/src/lib/shared/promotiontaskmenu.cpp | 26 +++--- .../designer/src/lib/shared/promotiontaskmenu_p.h | 26 +++--- tools/designer/src/lib/shared/propertylineedit.cpp | 26 +++--- tools/designer/src/lib/shared/propertylineedit_p.h | 26 +++--- .../designer/src/lib/shared/qdesigner_command.cpp | 26 +++--- .../designer/src/lib/shared/qdesigner_command2.cpp | 26 +++--- .../designer/src/lib/shared/qdesigner_command2_p.h | 26 +++--- .../designer/src/lib/shared/qdesigner_command_p.h | 26 +++--- .../designer/src/lib/shared/qdesigner_dnditem.cpp | 26 +++--- .../designer/src/lib/shared/qdesigner_dnditem_p.h | 26 +++--- .../src/lib/shared/qdesigner_dockwidget.cpp | 26 +++--- .../src/lib/shared/qdesigner_dockwidget_p.h | 26 +++--- .../src/lib/shared/qdesigner_formbuilder.cpp | 26 +++--- .../src/lib/shared/qdesigner_formbuilder_p.h | 26 +++--- .../src/lib/shared/qdesigner_formeditorcommand.cpp | 26 +++--- .../src/lib/shared/qdesigner_formeditorcommand_p.h | 26 +++--- .../src/lib/shared/qdesigner_formwindowcommand.cpp | 26 +++--- .../src/lib/shared/qdesigner_formwindowcommand_p.h | 26 +++--- .../src/lib/shared/qdesigner_formwindowmanager.cpp | 26 +++--- .../src/lib/shared/qdesigner_formwindowmanager_p.h | 26 +++--- .../src/lib/shared/qdesigner_integration.cpp | 26 +++--- .../src/lib/shared/qdesigner_integration_p.h | 26 +++--- .../src/lib/shared/qdesigner_introspection.cpp | 26 +++--- .../src/lib/shared/qdesigner_introspection_p.h | 26 +++--- .../src/lib/shared/qdesigner_membersheet.cpp | 26 +++--- .../src/lib/shared/qdesigner_membersheet_p.h | 26 +++--- tools/designer/src/lib/shared/qdesigner_menu.cpp | 26 +++--- tools/designer/src/lib/shared/qdesigner_menu_p.h | 26 +++--- .../designer/src/lib/shared/qdesigner_menubar.cpp | 26 +++--- .../designer/src/lib/shared/qdesigner_menubar_p.h | 26 +++--- .../src/lib/shared/qdesigner_objectinspector.cpp | 26 +++--- .../src/lib/shared/qdesigner_objectinspector_p.h | 26 +++--- .../src/lib/shared/qdesigner_promotion.cpp | 26 +++--- .../src/lib/shared/qdesigner_promotion_p.h | 26 +++--- .../src/lib/shared/qdesigner_promotiondialog.cpp | 26 +++--- .../src/lib/shared/qdesigner_promotiondialog_p.h | 26 +++--- .../src/lib/shared/qdesigner_propertycommand.cpp | 26 +++--- .../src/lib/shared/qdesigner_propertycommand_p.h | 26 +++--- .../src/lib/shared/qdesigner_propertyeditor.cpp | 26 +++--- .../src/lib/shared/qdesigner_propertyeditor_p.h | 26 +++--- .../src/lib/shared/qdesigner_propertysheet.cpp | 26 +++--- .../src/lib/shared/qdesigner_propertysheet_p.h | 26 +++--- .../src/lib/shared/qdesigner_qsettings.cpp | 26 +++--- .../src/lib/shared/qdesigner_qsettings_p.h | 26 +++--- .../src/lib/shared/qdesigner_stackedbox.cpp | 26 +++--- .../src/lib/shared/qdesigner_stackedbox_p.h | 26 +++--- .../src/lib/shared/qdesigner_tabwidget.cpp | 26 +++--- .../src/lib/shared/qdesigner_tabwidget_p.h | 26 +++--- .../designer/src/lib/shared/qdesigner_taskmenu.cpp | 26 +++--- .../designer/src/lib/shared/qdesigner_taskmenu_p.h | 26 +++--- .../designer/src/lib/shared/qdesigner_toolbar.cpp | 26 +++--- .../designer/src/lib/shared/qdesigner_toolbar_p.h | 26 +++--- .../designer/src/lib/shared/qdesigner_toolbox.cpp | 26 +++--- .../designer/src/lib/shared/qdesigner_toolbox_p.h | 26 +++--- tools/designer/src/lib/shared/qdesigner_utils.cpp | 26 +++--- tools/designer/src/lib/shared/qdesigner_utils_p.h | 26 +++--- tools/designer/src/lib/shared/qdesigner_widget.cpp | 26 +++--- tools/designer/src/lib/shared/qdesigner_widget_p.h | 26 +++--- .../src/lib/shared/qdesigner_widgetbox.cpp | 26 +++--- .../src/lib/shared/qdesigner_widgetbox_p.h | 26 +++--- .../src/lib/shared/qdesigner_widgetitem.cpp | 26 +++--- .../src/lib/shared/qdesigner_widgetitem_p.h | 26 +++--- tools/designer/src/lib/shared/qlayout_widget.cpp | 26 +++--- tools/designer/src/lib/shared/qlayout_widget_p.h | 26 +++--- .../designer/src/lib/shared/qscripthighlighter.cpp | 26 +++--- .../designer/src/lib/shared/qscripthighlighter_p.h | 26 +++--- tools/designer/src/lib/shared/qsimpleresource.cpp | 26 +++--- tools/designer/src/lib/shared/qsimpleresource_p.h | 26 +++--- .../src/lib/shared/qtresourceeditordialog.cpp | 26 +++--- .../src/lib/shared/qtresourceeditordialog_p.h | 26 +++--- tools/designer/src/lib/shared/qtresourcemodel.cpp | 26 +++--- tools/designer/src/lib/shared/qtresourcemodel_p.h | 26 +++--- tools/designer/src/lib/shared/qtresourceview.cpp | 26 +++--- tools/designer/src/lib/shared/qtresourceview_p.h | 26 +++--- tools/designer/src/lib/shared/richtexteditor.cpp | 26 +++--- tools/designer/src/lib/shared/richtexteditor_p.h | 26 +++--- tools/designer/src/lib/shared/scriptcommand.cpp | 26 +++--- tools/designer/src/lib/shared/scriptcommand_p.h | 26 +++--- tools/designer/src/lib/shared/scriptdialog.cpp | 26 +++--- tools/designer/src/lib/shared/scriptdialog_p.h | 26 +++--- .../designer/src/lib/shared/scripterrordialog.cpp | 26 +++--- .../designer/src/lib/shared/scripterrordialog_p.h | 26 +++--- tools/designer/src/lib/shared/shared_enums_p.h | 26 +++--- tools/designer/src/lib/shared/shared_global_p.h | 26 +++--- tools/designer/src/lib/shared/shared_settings.cpp | 26 +++--- tools/designer/src/lib/shared/shared_settings_p.h | 26 +++--- tools/designer/src/lib/shared/sheet_delegate.cpp | 26 +++--- tools/designer/src/lib/shared/sheet_delegate_p.h | 26 +++--- tools/designer/src/lib/shared/signalslotdialog.cpp | 26 +++--- tools/designer/src/lib/shared/signalslotdialog_p.h | 26 +++--- tools/designer/src/lib/shared/spacer_widget.cpp | 26 +++--- tools/designer/src/lib/shared/spacer_widget_p.h | 26 +++--- tools/designer/src/lib/shared/stylesheeteditor.cpp | 26 +++--- tools/designer/src/lib/shared/stylesheeteditor_p.h | 26 +++--- .../designer/src/lib/shared/textpropertyeditor.cpp | 26 +++--- .../designer/src/lib/shared/textpropertyeditor_p.h | 26 +++--- tools/designer/src/lib/shared/widgetdatabase.cpp | 26 +++--- tools/designer/src/lib/shared/widgetdatabase_p.h | 26 +++--- tools/designer/src/lib/shared/widgetfactory.cpp | 26 +++--- tools/designer/src/lib/shared/widgetfactory_p.h | 26 +++--- tools/designer/src/lib/shared/zoomwidget.cpp | 26 +++--- tools/designer/src/lib/shared/zoomwidget_p.h | 26 +++--- .../designer/src/lib/uilib/abstractformbuilder.cpp | 26 +++--- tools/designer/src/lib/uilib/abstractformbuilder.h | 26 +++--- tools/designer/src/lib/uilib/container.h | 26 +++--- tools/designer/src/lib/uilib/customwidget.h | 26 +++--- tools/designer/src/lib/uilib/formbuilder.cpp | 26 +++--- tools/designer/src/lib/uilib/formbuilder.h | 26 +++--- tools/designer/src/lib/uilib/formbuilderextra.cpp | 26 +++--- tools/designer/src/lib/uilib/formbuilderextra_p.h | 26 +++--- tools/designer/src/lib/uilib/formscriptrunner.cpp | 26 +++--- tools/designer/src/lib/uilib/formscriptrunner_p.h | 26 +++--- tools/designer/src/lib/uilib/properties.cpp | 26 +++--- tools/designer/src/lib/uilib/properties_p.h | 26 +++--- .../designer/src/lib/uilib/qdesignerexportwidget.h | 26 +++--- tools/designer/src/lib/uilib/resourcebuilder.cpp | 26 +++--- tools/designer/src/lib/uilib/resourcebuilder_p.h | 26 +++--- tools/designer/src/lib/uilib/textbuilder.cpp | 26 +++--- tools/designer/src/lib/uilib/textbuilder_p.h | 26 +++--- tools/designer/src/lib/uilib/ui4.cpp | 26 +++--- tools/designer/src/lib/uilib/ui4_p.h | 26 +++--- tools/designer/src/lib/uilib/uilib_global.h | 26 +++--- .../src/plugins/activeqt/qaxwidgetextrainfo.cpp | 26 +++--- .../src/plugins/activeqt/qaxwidgetextrainfo.h | 26 +++--- .../src/plugins/activeqt/qaxwidgetplugin.cpp | 26 +++--- .../src/plugins/activeqt/qaxwidgetplugin.h | 26 +++--- .../plugins/activeqt/qaxwidgetpropertysheet.cpp | 26 +++--- .../src/plugins/activeqt/qaxwidgetpropertysheet.h | 26 +++--- .../src/plugins/activeqt/qaxwidgettaskmenu.cpp | 26 +++--- .../src/plugins/activeqt/qaxwidgettaskmenu.h | 26 +++--- .../src/plugins/activeqt/qdesigneraxwidget.cpp | 26 +++--- .../src/plugins/activeqt/qdesigneraxwidget.h | 26 +++--- .../src/plugins/phononwidgets/phononcollection.cpp | 26 +++--- .../src/plugins/phononwidgets/seeksliderplugin.cpp | 26 +++--- .../src/plugins/phononwidgets/seeksliderplugin.h | 26 +++--- .../plugins/phononwidgets/videoplayerplugin.cpp | 26 +++--- .../src/plugins/phononwidgets/videoplayerplugin.h | 26 +++--- .../plugins/phononwidgets/videoplayertaskmenu.cpp | 26 +++--- .../plugins/phononwidgets/videoplayertaskmenu.h | 26 +++--- .../plugins/phononwidgets/volumesliderplugin.cpp | 26 +++--- .../src/plugins/phononwidgets/volumesliderplugin.h | 26 +++--- .../src/plugins/qwebview/qwebview_plugin.cpp | 26 +++--- .../src/plugins/qwebview/qwebview_plugin.h | 26 +++--- tools/designer/src/plugins/tools/view3d/view3d.cpp | 26 +++--- tools/designer/src/plugins/tools/view3d/view3d.h | 26 +++--- .../src/plugins/tools/view3d/view3d_global.h | 26 +++--- .../src/plugins/tools/view3d/view3d_plugin.cpp | 26 +++--- .../src/plugins/tools/view3d/view3d_plugin.h | 26 +++--- .../src/plugins/tools/view3d/view3d_tool.cpp | 26 +++--- .../src/plugins/tools/view3d/view3d_tool.h | 26 +++--- .../widgets/q3iconview/q3iconview_extrainfo.cpp | 26 +++--- .../widgets/q3iconview/q3iconview_extrainfo.h | 26 +++--- .../widgets/q3iconview/q3iconview_plugin.cpp | 26 +++--- .../plugins/widgets/q3iconview/q3iconview_plugin.h | 26 +++--- .../widgets/q3listbox/q3listbox_extrainfo.cpp | 26 +++--- .../widgets/q3listbox/q3listbox_extrainfo.h | 26 +++--- .../plugins/widgets/q3listbox/q3listbox_plugin.cpp | 26 +++--- .../plugins/widgets/q3listbox/q3listbox_plugin.h | 26 +++--- .../widgets/q3listview/q3listview_extrainfo.cpp | 26 +++--- .../widgets/q3listview/q3listview_extrainfo.h | 26 +++--- .../widgets/q3listview/q3listview_plugin.cpp | 26 +++--- .../plugins/widgets/q3listview/q3listview_plugin.h | 26 +++--- .../q3mainwindow/q3mainwindow_container.cpp | 26 +++--- .../widgets/q3mainwindow/q3mainwindow_container.h | 26 +++--- .../widgets/q3mainwindow/q3mainwindow_plugin.cpp | 26 +++--- .../widgets/q3mainwindow/q3mainwindow_plugin.h | 26 +++--- .../plugins/widgets/q3table/q3table_extrainfo.cpp | 26 +++--- .../plugins/widgets/q3table/q3table_extrainfo.h | 26 +++--- .../src/plugins/widgets/q3table/q3table_plugin.cpp | 26 +++--- .../src/plugins/widgets/q3table/q3table_plugin.h | 26 +++--- .../widgets/q3textedit/q3textedit_extrainfo.cpp | 26 +++--- .../widgets/q3textedit/q3textedit_extrainfo.h | 26 +++--- .../widgets/q3textedit/q3textedit_plugin.cpp | 26 +++--- .../plugins/widgets/q3textedit/q3textedit_plugin.h | 26 +++--- .../widgets/q3toolbar/q3toolbar_extrainfo.cpp | 26 +++--- .../widgets/q3toolbar/q3toolbar_extrainfo.h | 26 +++--- .../plugins/widgets/q3toolbar/q3toolbar_plugin.cpp | 26 +++--- .../plugins/widgets/q3toolbar/q3toolbar_plugin.h | 26 +++--- .../plugins/widgets/q3widgets/q3widget_plugins.cpp | 26 +++--- .../plugins/widgets/q3widgets/q3widget_plugins.h | 26 +++--- .../q3widgetstack/q3widgetstack_container.cpp | 26 +++--- .../q3widgetstack/q3widgetstack_container.h | 26 +++--- .../widgets/q3widgetstack/q3widgetstack_plugin.cpp | 26 +++--- .../widgets/q3widgetstack/q3widgetstack_plugin.h | 26 +++--- .../q3widgetstack/qdesigner_q3widgetstack.cpp | 26 +++--- .../q3widgetstack/qdesigner_q3widgetstack_p.h | 26 +++--- .../widgets/q3wizard/q3wizard_container.cpp | 26 +++--- .../plugins/widgets/q3wizard/q3wizard_container.h | 26 +++--- .../plugins/widgets/q3wizard/q3wizard_plugin.cpp | 26 +++--- .../src/plugins/widgets/q3wizard/q3wizard_plugin.h | 26 +++--- .../src/plugins/widgets/qt3supportwidgets.cpp | 26 +++--- tools/designer/src/uitools/quiloader.cpp | 26 +++--- tools/designer/src/uitools/quiloader.h | 26 +++--- tools/designer/src/uitools/quiloader_p.h | 26 +++--- tools/installer/batch/build.bat | 26 +++--- tools/installer/batch/copy.bat | 26 +++--- tools/installer/batch/delete.bat | 26 +++--- tools/installer/batch/env.bat | 26 +++--- tools/installer/batch/extract.bat | 26 +++--- tools/installer/batch/installer.bat | 26 +++--- tools/installer/batch/log.bat | 26 +++--- tools/installer/batch/toupper.bat | 26 +++--- tools/installer/config/config.default.sample | 26 +++--- tools/installer/config/mingw-opensource.conf | 26 +++--- tools/installer/iwmake.bat | 26 +++--- tools/installer/nsis/confirmpage.ini | 26 +++--- tools/installer/nsis/gwdownload.ini | 26 +++--- tools/installer/nsis/gwmirror.ini | 26 +++--- tools/installer/nsis/includes/global.nsh | 26 +++--- tools/installer/nsis/includes/instdir.nsh | 26 +++--- tools/installer/nsis/includes/list.nsh | 26 +++--- tools/installer/nsis/includes/qtcommon.nsh | 26 +++--- tools/installer/nsis/includes/qtenv.nsh | 26 +++--- tools/installer/nsis/includes/system.nsh | 26 +++--- tools/installer/nsis/installer.nsi | 26 +++--- tools/installer/nsis/modules/environment.nsh | 26 +++--- tools/installer/nsis/modules/mingw.nsh | 26 +++--- tools/installer/nsis/modules/opensource.nsh | 26 +++--- tools/installer/nsis/modules/registeruiext.nsh | 26 +++--- tools/installer/nsis/opensource.ini | 26 +++--- tools/linguist/lconvert/main.cpp | 26 +++--- tools/linguist/linguist/batchtranslation.ui | 26 +++--- tools/linguist/linguist/batchtranslationdialog.cpp | 26 +++--- tools/linguist/linguist/batchtranslationdialog.h | 26 +++--- tools/linguist/linguist/errorsview.cpp | 26 +++--- tools/linguist/linguist/errorsview.h | 26 +++--- tools/linguist/linguist/finddialog.cpp | 26 +++--- tools/linguist/linguist/finddialog.h | 26 +++--- tools/linguist/linguist/finddialog.ui | 26 +++--- tools/linguist/linguist/formpreviewview.cpp | 26 +++--- tools/linguist/linguist/formpreviewview.h | 26 +++--- tools/linguist/linguist/main.cpp | 26 +++--- tools/linguist/linguist/mainwindow.cpp | 26 +++--- tools/linguist/linguist/mainwindow.h | 26 +++--- tools/linguist/linguist/mainwindow.ui | 26 +++--- tools/linguist/linguist/messageeditor.cpp | 26 +++--- tools/linguist/linguist/messageeditor.h | 26 +++--- tools/linguist/linguist/messageeditorwidgets.cpp | 26 +++--- tools/linguist/linguist/messageeditorwidgets.h | 26 +++--- tools/linguist/linguist/messagehighlighter.cpp | 26 +++--- tools/linguist/linguist/messagehighlighter.h | 26 +++--- tools/linguist/linguist/messagemodel.cpp | 26 +++--- tools/linguist/linguist/messagemodel.h | 26 +++--- tools/linguist/linguist/phrase.cpp | 26 +++--- tools/linguist/linguist/phrase.h | 26 +++--- tools/linguist/linguist/phrasebookbox.cpp | 26 +++--- tools/linguist/linguist/phrasebookbox.h | 26 +++--- tools/linguist/linguist/phrasebookbox.ui | 26 +++--- tools/linguist/linguist/phrasemodel.cpp | 26 +++--- tools/linguist/linguist/phrasemodel.h | 26 +++--- tools/linguist/linguist/phraseview.cpp | 26 +++--- tools/linguist/linguist/phraseview.h | 26 +++--- tools/linguist/linguist/printout.cpp | 26 +++--- tools/linguist/linguist/printout.h | 26 +++--- tools/linguist/linguist/recentfiles.cpp | 26 +++--- tools/linguist/linguist/recentfiles.h | 26 +++--- tools/linguist/linguist/sourcecodeview.cpp | 26 +++--- tools/linguist/linguist/sourcecodeview.h | 26 +++--- tools/linguist/linguist/statistics.cpp | 26 +++--- tools/linguist/linguist/statistics.h | 26 +++--- tools/linguist/linguist/statistics.ui | 26 +++--- tools/linguist/linguist/translatedialog.cpp | 26 +++--- tools/linguist/linguist/translatedialog.h | 26 +++--- tools/linguist/linguist/translatedialog.ui | 26 +++--- .../linguist/translationsettingsdialog.cpp | 26 +++--- .../linguist/linguist/translationsettingsdialog.h | 26 +++--- tools/linguist/lrelease/lrelease.1 | 34 ++++---- tools/linguist/lrelease/main.cpp | 26 +++--- tools/linguist/lupdate/lupdate.1 | 26 +++--- tools/linguist/lupdate/main.cpp | 26 +++--- tools/linguist/shared/abstractproitemvisitor.h | 26 +++--- tools/linguist/shared/cpp.cpp | 26 +++--- tools/linguist/shared/java.cpp | 26 +++--- tools/linguist/shared/numerus.cpp | 26 +++--- tools/linguist/shared/po.cpp | 26 +++--- tools/linguist/shared/profileevaluator.cpp | 26 +++--- tools/linguist/shared/profileevaluator.h | 26 +++--- tools/linguist/shared/proitems.cpp | 26 +++--- tools/linguist/shared/proitems.h | 26 +++--- tools/linguist/shared/proparserutils.h | 26 +++--- tools/linguist/shared/proreader.cpp | 26 +++--- tools/linguist/shared/proreader.h | 26 +++--- tools/linguist/shared/qm.cpp | 26 +++--- tools/linguist/shared/qph.cpp | 26 +++--- tools/linguist/shared/qscript.cpp | 26 +++--- tools/linguist/shared/qscript.g | 26 +++--- tools/linguist/shared/simtexth.cpp | 26 +++--- tools/linguist/shared/simtexth.h | 26 +++--- tools/linguist/shared/translator.cpp | 26 +++--- tools/linguist/shared/translator.h | 26 +++--- tools/linguist/shared/translatormessage.cpp | 26 +++--- tools/linguist/shared/translatormessage.h | 26 +++--- tools/linguist/shared/translatortools.cpp | 26 +++--- tools/linguist/shared/translatortools.h | 26 +++--- tools/linguist/shared/ts.cpp | 26 +++--- tools/linguist/shared/ui.cpp | 26 +++--- tools/linguist/shared/xliff.cpp | 26 +++--- tools/linguist/tests/data/main.cpp | 26 +++--- tools/linguist/tests/tst_linguist.cpp | 26 +++--- tools/linguist/tests/tst_linguist.h | 26 +++--- tools/linguist/tests/tst_lupdate.cpp | 26 +++--- tools/linguist/tests/tst_simtexth.cpp | 26 +++--- tools/macdeployqt/macchangeqt/main.cpp | 26 +++--- tools/macdeployqt/macdeployqt/main.cpp | 26 +++--- tools/macdeployqt/shared/shared.cpp | 26 +++--- tools/macdeployqt/shared/shared.h | 26 +++--- tools/macdeployqt/tests/tst_deployment_mac.cpp | 26 +++--- tools/makeqpf/main.cpp | 26 +++--- tools/makeqpf/mainwindow.cpp | 26 +++--- tools/makeqpf/mainwindow.h | 26 +++--- tools/makeqpf/qpf2.cpp | 26 +++--- tools/makeqpf/qpf2.h | 26 +++--- tools/pixeltool/main.cpp | 26 +++--- tools/pixeltool/qpixeltool.cpp | 26 +++--- tools/pixeltool/qpixeltool.h | 26 +++--- tools/porting/src/ast.cpp | 26 +++--- tools/porting/src/ast.h | 26 +++--- tools/porting/src/codemodel.cpp | 26 +++--- tools/porting/src/codemodel.h | 26 +++--- tools/porting/src/codemodelattributes.cpp | 26 +++--- tools/porting/src/codemodelattributes.h | 26 +++--- tools/porting/src/codemodelwalker.cpp | 26 +++--- tools/porting/src/codemodelwalker.h | 26 +++--- tools/porting/src/cpplexer.cpp | 26 +++--- tools/porting/src/cpplexer.h | 26 +++--- tools/porting/src/errors.cpp | 26 +++--- tools/porting/src/errors.h | 26 +++--- tools/porting/src/fileporter.cpp | 26 +++--- tools/porting/src/fileporter.h | 26 +++--- tools/porting/src/filewriter.cpp | 26 +++--- tools/porting/src/filewriter.h | 26 +++--- tools/porting/src/list.h | 26 +++--- tools/porting/src/logger.cpp | 26 +++--- tools/porting/src/logger.h | 26 +++--- tools/porting/src/parser.cpp | 26 +++--- tools/porting/src/parser.h | 26 +++--- tools/porting/src/port.cpp | 26 +++--- tools/porting/src/portingrules.cpp | 26 +++--- tools/porting/src/portingrules.h | 26 +++--- tools/porting/src/preprocessorcontrol.cpp | 26 +++--- tools/porting/src/preprocessorcontrol.h | 26 +++--- tools/porting/src/projectporter.cpp | 26 +++--- tools/porting/src/projectporter.h | 26 +++--- tools/porting/src/proparser.cpp | 26 +++--- tools/porting/src/proparser.h | 26 +++--- tools/porting/src/q3porting.xml | 26 +++--- tools/porting/src/qtsimplexml.cpp | 26 +++--- tools/porting/src/qtsimplexml.h | 26 +++--- tools/porting/src/replacetoken.cpp | 26 +++--- tools/porting/src/replacetoken.h | 26 +++--- tools/porting/src/rpp.cpp | 26 +++--- tools/porting/src/rpp.h | 26 +++--- tools/porting/src/rppexpressionbuilder.cpp | 26 +++--- tools/porting/src/rppexpressionbuilder.h | 26 +++--- tools/porting/src/rpplexer.cpp | 26 +++--- tools/porting/src/rpplexer.h | 26 +++--- tools/porting/src/rpptreeevaluator.cpp | 26 +++--- tools/porting/src/rpptreeevaluator.h | 26 +++--- tools/porting/src/rpptreewalker.cpp | 26 +++--- tools/porting/src/rpptreewalker.h | 26 +++--- tools/porting/src/semantic.cpp | 26 +++--- tools/porting/src/semantic.h | 26 +++--- tools/porting/src/smallobject.cpp | 26 +++--- tools/porting/src/smallobject.h | 26 +++--- tools/porting/src/textreplacement.cpp | 26 +++--- tools/porting/src/textreplacement.h | 26 +++--- tools/porting/src/tokenengine.cpp | 26 +++--- tools/porting/src/tokenengine.h | 26 +++--- tools/porting/src/tokenizer.cpp | 26 +++--- tools/porting/src/tokenizer.h | 26 +++--- tools/porting/src/tokenreplacements.cpp | 26 +++--- tools/porting/src/tokenreplacements.h | 26 +++--- tools/porting/src/tokens.h | 26 +++--- tools/porting/src/tokenstreamadapter.h | 26 +++--- tools/porting/src/translationunit.cpp | 26 +++--- tools/porting/src/translationunit.h | 26 +++--- tools/porting/src/treewalker.cpp | 26 +++--- tools/porting/src/treewalker.h | 26 +++--- tools/qconfig/feature.cpp | 26 +++--- tools/qconfig/feature.h | 26 +++--- tools/qconfig/featuretreemodel.cpp | 26 +++--- tools/qconfig/featuretreemodel.h | 26 +++--- tools/qconfig/graphics.h | 26 +++--- tools/qconfig/main.cpp | 26 +++--- tools/qdbus/qdbus/qdbus.cpp | 26 +++--- tools/qdbus/qdbuscpp2xml/qdbuscpp2xml.cpp | 26 +++--- tools/qdbus/qdbusviewer/main.cpp | 26 +++--- tools/qdbus/qdbusviewer/propertydialog.cpp | 26 +++--- tools/qdbus/qdbusviewer/propertydialog.h | 26 +++--- tools/qdbus/qdbusviewer/qdbusmodel.cpp | 26 +++--- tools/qdbus/qdbusviewer/qdbusmodel.h | 26 +++--- tools/qdbus/qdbusviewer/qdbusviewer.cpp | 26 +++--- tools/qdbus/qdbusviewer/qdbusviewer.h | 26 +++--- tools/qdbus/qdbusxml2cpp/qdbusxml2cpp.cpp | 26 +++--- tools/qdoc3/apigenerator.cpp | 26 +++--- tools/qdoc3/apigenerator.h | 26 +++--- tools/qdoc3/archiveextractor.cpp | 26 +++--- tools/qdoc3/archiveextractor.h | 26 +++--- tools/qdoc3/atom.cpp | 26 +++--- tools/qdoc3/atom.h | 26 +++--- tools/qdoc3/bookgenerator.cpp | 26 +++--- tools/qdoc3/bookgenerator.h | 26 +++--- tools/qdoc3/ccodeparser.cpp | 26 +++--- tools/qdoc3/ccodeparser.h | 26 +++--- tools/qdoc3/codechunk.cpp | 26 +++--- tools/qdoc3/codechunk.h | 26 +++--- tools/qdoc3/codemarker.cpp | 26 +++--- tools/qdoc3/codemarker.h | 26 +++--- tools/qdoc3/codeparser.cpp | 26 +++--- tools/qdoc3/codeparser.h | 26 +++--- tools/qdoc3/command.cpp | 26 +++--- tools/qdoc3/command.h | 26 +++--- tools/qdoc3/config.cpp | 26 +++--- tools/qdoc3/config.h | 26 +++--- tools/qdoc3/cppcodemarker.cpp | 26 +++--- tools/qdoc3/cppcodemarker.h | 26 +++--- tools/qdoc3/cppcodeparser.cpp | 26 +++--- tools/qdoc3/cppcodeparser.h | 26 +++--- tools/qdoc3/cpptoqsconverter.cpp | 26 +++--- tools/qdoc3/cpptoqsconverter.h | 26 +++--- tools/qdoc3/dcfsection.cpp | 26 +++--- tools/qdoc3/dcfsection.h | 26 +++--- tools/qdoc3/doc.cpp | 26 +++--- tools/qdoc3/doc.h | 26 +++--- tools/qdoc3/editdistance.cpp | 26 +++--- tools/qdoc3/editdistance.h | 26 +++--- tools/qdoc3/generator.cpp | 26 +++--- tools/qdoc3/generator.h | 26 +++--- tools/qdoc3/helpprojectwriter.cpp | 26 +++--- tools/qdoc3/helpprojectwriter.h | 26 +++--- tools/qdoc3/htmlgenerator.cpp | 26 +++--- tools/qdoc3/htmlgenerator.h | 26 +++--- tools/qdoc3/jambiapiparser.cpp | 26 +++--- tools/qdoc3/jambiapiparser.h | 26 +++--- tools/qdoc3/javacodemarker.cpp | 26 +++--- tools/qdoc3/javacodemarker.h | 26 +++--- tools/qdoc3/javadocgenerator.cpp | 26 +++--- tools/qdoc3/javadocgenerator.h | 26 +++--- tools/qdoc3/linguistgenerator.cpp | 26 +++--- tools/qdoc3/linguistgenerator.h | 26 +++--- tools/qdoc3/location.cpp | 26 +++--- tools/qdoc3/location.h | 26 +++--- tools/qdoc3/loutgenerator.cpp | 26 +++--- tools/qdoc3/loutgenerator.h | 26 +++--- tools/qdoc3/main.cpp | 26 +++--- tools/qdoc3/mangenerator.cpp | 26 +++--- tools/qdoc3/mangenerator.h | 26 +++--- tools/qdoc3/node.cpp | 26 +++--- tools/qdoc3/node.h | 26 +++--- tools/qdoc3/openedlist.cpp | 26 +++--- tools/qdoc3/openedlist.h | 26 +++--- tools/qdoc3/pagegenerator.cpp | 26 +++--- tools/qdoc3/pagegenerator.h | 26 +++--- tools/qdoc3/plaincodemarker.cpp | 26 +++--- tools/qdoc3/plaincodemarker.h | 26 +++--- tools/qdoc3/polyarchiveextractor.cpp | 26 +++--- tools/qdoc3/polyarchiveextractor.h | 26 +++--- tools/qdoc3/polyuncompressor.cpp | 26 +++--- tools/qdoc3/polyuncompressor.h | 26 +++--- tools/qdoc3/qsakernelparser.cpp | 26 +++--- tools/qdoc3/qsakernelparser.h | 26 +++--- tools/qdoc3/qscodemarker.cpp | 26 +++--- tools/qdoc3/qscodemarker.h | 26 +++--- tools/qdoc3/qscodeparser.cpp | 26 +++--- tools/qdoc3/qscodeparser.h | 26 +++--- tools/qdoc3/quoter.cpp | 26 +++--- tools/qdoc3/quoter.h | 26 +++--- tools/qdoc3/separator.cpp | 26 +++--- tools/qdoc3/separator.h | 26 +++--- tools/qdoc3/sgmlgenerator.cpp | 26 +++--- tools/qdoc3/sgmlgenerator.h | 26 +++--- tools/qdoc3/text.cpp | 26 +++--- tools/qdoc3/text.h | 26 +++--- tools/qdoc3/tokenizer.cpp | 26 +++--- tools/qdoc3/tokenizer.h | 26 +++--- tools/qdoc3/tr.h | 26 +++--- tools/qdoc3/tree.cpp | 26 +++--- tools/qdoc3/tree.h | 26 +++--- tools/qdoc3/uncompressor.cpp | 26 +++--- tools/qdoc3/uncompressor.h | 26 +++--- tools/qdoc3/webxmlgenerator.cpp | 26 +++--- tools/qdoc3/webxmlgenerator.h | 26 +++--- tools/qdoc3/yyindent.cpp | 26 +++--- tools/qev/qev.cpp | 26 +++--- tools/qtconcurrent/codegenerator/example/main.cpp | 26 +++--- .../codegenerator/src/codegenerator.cpp | 26 +++--- .../qtconcurrent/codegenerator/src/codegenerator.h | 26 +++--- tools/qtconcurrent/generaterun/main.cpp | 26 +++--- tools/qtconfig/colorbutton.cpp | 26 +++--- tools/qtconfig/colorbutton.h | 26 +++--- tools/qtconfig/main.cpp | 26 +++--- tools/qtconfig/mainwindow.cpp | 26 +++--- tools/qtconfig/mainwindow.h | 26 +++--- tools/qtconfig/mainwindowbase.cpp | 26 +++--- tools/qtconfig/mainwindowbase.h | 26 +++--- tools/qtconfig/mainwindowbase.ui | 26 +++--- tools/qtconfig/paletteeditoradvanced.cpp | 26 +++--- tools/qtconfig/paletteeditoradvanced.h | 26 +++--- tools/qtconfig/paletteeditoradvancedbase.cpp | 26 +++--- tools/qtconfig/paletteeditoradvancedbase.h | 26 +++--- tools/qtconfig/paletteeditoradvancedbase.ui | 26 +++--- tools/qtconfig/previewframe.cpp | 26 +++--- tools/qtconfig/previewframe.h | 26 +++--- tools/qtconfig/previewwidget.cpp | 26 +++--- tools/qtconfig/previewwidget.h | 26 +++--- tools/qtconfig/previewwidgetbase.cpp | 26 +++--- tools/qtconfig/previewwidgetbase.h | 26 +++--- tools/qtconfig/previewwidgetbase.ui | 26 +++--- tools/qtestlib/updater/main.cpp | 26 +++--- .../qtestlib/wince/cetest/activesyncconnection.cpp | 26 +++--- tools/qtestlib/wince/cetest/activesyncconnection.h | 26 +++--- tools/qtestlib/wince/cetest/deployment.cpp | 26 +++--- tools/qtestlib/wince/cetest/deployment.h | 26 +++--- tools/qtestlib/wince/cetest/main.cpp | 26 +++--- tools/qtestlib/wince/cetest/remoteconnection.cpp | 26 +++--- tools/qtestlib/wince/cetest/remoteconnection.h | 26 +++--- tools/qtestlib/wince/remotelib/commands.cpp | 26 +++--- tools/qtestlib/wince/remotelib/commands.h | 26 +++--- tools/qvfb/config.ui | 26 +++--- tools/qvfb/gammaview.h | 26 +++--- tools/qvfb/main.cpp | 26 +++--- tools/qvfb/qanimationwriter.cpp | 26 +++--- tools/qvfb/qanimationwriter.h | 26 +++--- tools/qvfb/qtopiakeysym.h | 26 +++--- tools/qvfb/qvfb.cpp | 26 +++--- tools/qvfb/qvfb.h | 26 +++--- tools/qvfb/qvfbmmap.cpp | 26 +++--- tools/qvfb/qvfbmmap.h | 26 +++--- tools/qvfb/qvfbprotocol.cpp | 26 +++--- tools/qvfb/qvfbprotocol.h | 26 +++--- tools/qvfb/qvfbratedlg.cpp | 26 +++--- tools/qvfb/qvfbratedlg.h | 26 +++--- tools/qvfb/qvfbshmem.cpp | 26 +++--- tools/qvfb/qvfbshmem.h | 26 +++--- tools/qvfb/qvfbview.cpp | 26 +++--- tools/qvfb/qvfbview.h | 26 +++--- tools/qvfb/qvfbx11view.cpp | 26 +++--- tools/qvfb/qvfbx11view.h | 26 +++--- tools/qvfb/x11keyfaker.cpp | 26 +++--- tools/qvfb/x11keyfaker.h | 26 +++--- tools/shared/deviceskin/deviceskin.cpp | 26 +++--- tools/shared/deviceskin/deviceskin.h | 26 +++--- tools/shared/findwidget/abstractfindwidget.cpp | 26 +++--- tools/shared/findwidget/abstractfindwidget.h | 26 +++--- tools/shared/findwidget/itemviewfindwidget.cpp | 26 +++--- tools/shared/findwidget/itemviewfindwidget.h | 26 +++--- tools/shared/findwidget/texteditfindwidget.cpp | 26 +++--- tools/shared/findwidget/texteditfindwidget.h | 26 +++--- tools/shared/fontpanel/fontpanel.cpp | 26 +++--- tools/shared/fontpanel/fontpanel.h | 26 +++--- tools/shared/qtgradienteditor/qtcolorbutton.cpp | 26 +++--- tools/shared/qtgradienteditor/qtcolorbutton.h | 26 +++--- tools/shared/qtgradienteditor/qtcolorline.cpp | 26 +++--- tools/shared/qtgradienteditor/qtcolorline.h | 26 +++--- tools/shared/qtgradienteditor/qtgradientdialog.cpp | 26 +++--- tools/shared/qtgradienteditor/qtgradientdialog.h | 26 +++--- tools/shared/qtgradienteditor/qtgradientdialog.ui | 26 +++--- tools/shared/qtgradienteditor/qtgradienteditor.cpp | 26 +++--- tools/shared/qtgradienteditor/qtgradienteditor.h | 26 +++--- tools/shared/qtgradienteditor/qtgradienteditor.ui | 26 +++--- .../shared/qtgradienteditor/qtgradientmanager.cpp | 26 +++--- tools/shared/qtgradienteditor/qtgradientmanager.h | 26 +++--- .../qtgradienteditor/qtgradientstopscontroller.cpp | 26 +++--- .../qtgradienteditor/qtgradientstopscontroller.h | 26 +++--- .../qtgradienteditor/qtgradientstopsmodel.cpp | 26 +++--- .../shared/qtgradienteditor/qtgradientstopsmodel.h | 26 +++--- .../qtgradienteditor/qtgradientstopswidget.cpp | 26 +++--- .../qtgradienteditor/qtgradientstopswidget.h | 26 +++--- tools/shared/qtgradienteditor/qtgradientutils.cpp | 26 +++--- tools/shared/qtgradienteditor/qtgradientutils.h | 26 +++--- tools/shared/qtgradienteditor/qtgradientview.cpp | 26 +++--- tools/shared/qtgradienteditor/qtgradientview.h | 26 +++--- .../qtgradienteditor/qtgradientviewdialog.cpp | 26 +++--- .../shared/qtgradienteditor/qtgradientviewdialog.h | 26 +++--- .../qtgradienteditor/qtgradientviewdialog.ui | 26 +++--- tools/shared/qtgradienteditor/qtgradientwidget.cpp | 26 +++--- tools/shared/qtgradienteditor/qtgradientwidget.h | 26 +++--- .../qtpropertybrowser/qtbuttonpropertybrowser.cpp | 26 +++--- .../qtpropertybrowser/qtbuttonpropertybrowser.h | 26 +++--- tools/shared/qtpropertybrowser/qteditorfactory.cpp | 26 +++--- tools/shared/qtpropertybrowser/qteditorfactory.h | 26 +++--- .../qtgroupboxpropertybrowser.cpp | 26 +++--- .../qtpropertybrowser/qtgroupboxpropertybrowser.h | 26 +++--- .../shared/qtpropertybrowser/qtpropertybrowser.cpp | 26 +++--- tools/shared/qtpropertybrowser/qtpropertybrowser.h | 26 +++--- .../qtpropertybrowser/qtpropertybrowserutils.cpp | 26 +++--- .../qtpropertybrowser/qtpropertybrowserutils_p.h | 26 +++--- .../shared/qtpropertybrowser/qtpropertymanager.cpp | 26 +++--- tools/shared/qtpropertybrowser/qtpropertymanager.h | 26 +++--- .../qtpropertybrowser/qttreepropertybrowser.cpp | 26 +++--- .../qtpropertybrowser/qttreepropertybrowser.h | 26 +++--- .../shared/qtpropertybrowser/qtvariantproperty.cpp | 26 +++--- tools/shared/qtpropertybrowser/qtvariantproperty.h | 26 +++--- tools/shared/qttoolbardialog/qttoolbardialog.cpp | 26 +++--- tools/shared/qttoolbardialog/qttoolbardialog.h | 26 +++--- tools/xmlpatterns/main.cpp | 26 +++--- tools/xmlpatterns/main.h | 26 +++--- tools/xmlpatterns/qapplicationargument.cpp | 26 +++--- tools/xmlpatterns/qapplicationargument_p.h | 26 +++--- tools/xmlpatterns/qapplicationargumentparser.cpp | 26 +++--- tools/xmlpatterns/qapplicationargumentparser_p.h | 26 +++--- tools/xmlpatterns/qcoloringmessagehandler.cpp | 26 +++--- tools/xmlpatterns/qcoloringmessagehandler_p.h | 26 +++--- tools/xmlpatterns/qcoloroutput.cpp | 26 +++--- tools/xmlpatterns/qcoloroutput_p.h | 26 +++--- util/fixnonlatin1/main.cpp | 26 +++--- util/gencmap/gencmap.cpp | 26 +++--- util/lexgen/configfile.cpp | 26 +++--- util/lexgen/configfile.h | 26 +++--- util/lexgen/generator.cpp | 26 +++--- util/lexgen/generator.h | 26 +++--- util/lexgen/global.h | 26 +++--- util/lexgen/main.cpp | 26 +++--- util/lexgen/nfa.cpp | 26 +++--- util/lexgen/nfa.h | 26 +++--- util/lexgen/re2nfa.cpp | 26 +++--- util/lexgen/re2nfa.h | 26 +++--- util/lexgen/tests/tst_lexgen.cpp | 26 +++--- util/lexgen/tokenizer.cpp | 26 +++--- util/local_database/testlocales/localemodel.cpp | 26 +++--- util/local_database/testlocales/localemodel.h | 26 +++--- util/local_database/testlocales/localewidget.cpp | 26 +++--- util/local_database/testlocales/localewidget.h | 26 +++--- util/local_database/testlocales/main.cpp | 26 +++--- util/normalize/main.cpp | 26 +++--- util/plugintest/main.cpp | 26 +++--- util/qlalr/compress.cpp | 26 +++--- util/qlalr/compress.h | 26 +++--- util/qlalr/cppgenerator.cpp | 52 ++++++------ util/qlalr/cppgenerator.h | 26 +++--- util/qlalr/dotgraph.cpp | 26 +++--- util/qlalr/dotgraph.h | 26 +++--- util/qlalr/examples/dummy-xml/ll/dummy-xml-ll.cpp | 26 +++--- util/qlalr/examples/lambda/main.cpp | 26 +++--- util/qlalr/examples/qparser/qparser.cpp | 26 +++--- util/qlalr/examples/qparser/qparser.h | 26 +++--- util/qlalr/grammar.cpp | 26 +++--- util/qlalr/grammar_p.h | 26 +++--- util/qlalr/lalr.cpp | 26 +++--- util/qlalr/lalr.g | 78 +++++++++--------- util/qlalr/lalr.h | 26 +++--- util/qlalr/main.cpp | 26 +++--- util/qlalr/parsetable.cpp | 26 +++--- util/qlalr/parsetable.h | 26 +++--- util/qlalr/recognizer.cpp | 26 +++--- util/qlalr/recognizer.h | 26 +++--- util/unicode/codecs/big5/main.cpp | 26 +++--- util/unicode/main.cpp | 52 ++++++------ util/xkbdatagen/main.cpp | 52 ++++++------ 7707 files changed, 100383 insertions(+), 100428 deletions(-) diff --git a/config.tests/mac/crc/main.cpp b/config.tests/mac/crc/main.cpp index 92f4a85..ef28175 100644 --- a/config.tests/mac/crc/main.cpp +++ b/config.tests/mac/crc/main.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/config.tests/mac/xcodeversion.cpp b/config.tests/mac/xcodeversion.cpp index f00207b..9848f2e 100644 --- a/config.tests/mac/xcodeversion.cpp +++ b/config.tests/mac/xcodeversion.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/config.tests/qws/ahi/ahi.cpp b/config.tests/qws/ahi/ahi.cpp index 7fcd427..15eba19 100644 --- a/config.tests/qws/ahi/ahi.cpp +++ b/config.tests/qws/ahi/ahi.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/config.tests/qws/directfb/directfb.cpp b/config.tests/qws/directfb/directfb.cpp index 2e2a571..9d3a6d8 100644 --- a/config.tests/qws/directfb/directfb.cpp +++ b/config.tests/qws/directfb/directfb.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/config.tests/qws/sound/sound.cpp b/config.tests/qws/sound/sound.cpp index 9ac9e08..8df45a5 100644 --- a/config.tests/qws/sound/sound.cpp +++ b/config.tests/qws/sound/sound.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/config.tests/qws/svgalib/svgalib.cpp b/config.tests/qws/svgalib/svgalib.cpp index 5954579..aead410 100644 --- a/config.tests/qws/svgalib/svgalib.cpp +++ b/config.tests/qws/svgalib/svgalib.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/config.tests/unix/3dnow/3dnow.cpp b/config.tests/unix/3dnow/3dnow.cpp index 9fe0d6013..cc759c0 100644 --- a/config.tests/unix/3dnow/3dnow.cpp +++ b/config.tests/unix/3dnow/3dnow.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/config.tests/unix/clock-gettime/clock-gettime.cpp b/config.tests/unix/clock-gettime/clock-gettime.cpp index ac26c78..23049bc 100644 --- a/config.tests/unix/clock-gettime/clock-gettime.cpp +++ b/config.tests/unix/clock-gettime/clock-gettime.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/config.tests/unix/clock-monotonic/clock-monotonic.cpp b/config.tests/unix/clock-monotonic/clock-monotonic.cpp index 60a6487..1d7cabe 100644 --- a/config.tests/unix/clock-monotonic/clock-monotonic.cpp +++ b/config.tests/unix/clock-monotonic/clock-monotonic.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/config.tests/unix/cups/cups.cpp b/config.tests/unix/cups/cups.cpp index cbfeb0e..cb80bad 100644 --- a/config.tests/unix/cups/cups.cpp +++ b/config.tests/unix/cups/cups.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/config.tests/unix/db2/db2.cpp b/config.tests/unix/db2/db2.cpp index 0ccef76..89f096d 100644 --- a/config.tests/unix/db2/db2.cpp +++ b/config.tests/unix/db2/db2.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/config.tests/unix/dbus/dbus.cpp b/config.tests/unix/dbus/dbus.cpp index 66374bc..36fe5b6 100644 --- a/config.tests/unix/dbus/dbus.cpp +++ b/config.tests/unix/dbus/dbus.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/config.tests/unix/doubleformat/doubleformattest.cpp b/config.tests/unix/doubleformat/doubleformattest.cpp index bf96835..a5d072d 100644 --- a/config.tests/unix/doubleformat/doubleformattest.cpp +++ b/config.tests/unix/doubleformat/doubleformattest.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/config.tests/unix/endian/endiantest.cpp b/config.tests/unix/endian/endiantest.cpp index 656a969..e3ed57a 100644 --- a/config.tests/unix/endian/endiantest.cpp +++ b/config.tests/unix/endian/endiantest.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/config.tests/unix/floatmath/floatmath.cpp b/config.tests/unix/floatmath/floatmath.cpp index b63e21c..c3a729c 100644 --- a/config.tests/unix/floatmath/floatmath.cpp +++ b/config.tests/unix/floatmath/floatmath.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/config.tests/unix/freetype/freetype.cpp b/config.tests/unix/freetype/freetype.cpp index d5ec401..760cca9 100644 --- a/config.tests/unix/freetype/freetype.cpp +++ b/config.tests/unix/freetype/freetype.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/config.tests/unix/getaddrinfo/getaddrinfotest.cpp b/config.tests/unix/getaddrinfo/getaddrinfotest.cpp index 9b0b828..25fc85f 100644 --- a/config.tests/unix/getaddrinfo/getaddrinfotest.cpp +++ b/config.tests/unix/getaddrinfo/getaddrinfotest.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/config.tests/unix/getifaddrs/getifaddrs.cpp b/config.tests/unix/getifaddrs/getifaddrs.cpp index 20949c4..fa8305d 100644 --- a/config.tests/unix/getifaddrs/getifaddrs.cpp +++ b/config.tests/unix/getifaddrs/getifaddrs.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/config.tests/unix/glib/glib.cpp b/config.tests/unix/glib/glib.cpp index eac414a..700a222 100644 --- a/config.tests/unix/glib/glib.cpp +++ b/config.tests/unix/glib/glib.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/config.tests/unix/gnu-libiconv/gnu-libiconv.cpp b/config.tests/unix/gnu-libiconv/gnu-libiconv.cpp index f0db060..1b7d097 100644 --- a/config.tests/unix/gnu-libiconv/gnu-libiconv.cpp +++ b/config.tests/unix/gnu-libiconv/gnu-libiconv.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/config.tests/unix/gstreamer/gstreamer.cpp b/config.tests/unix/gstreamer/gstreamer.cpp index de88123..c93a0b8 100644 --- a/config.tests/unix/gstreamer/gstreamer.cpp +++ b/config.tests/unix/gstreamer/gstreamer.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/config.tests/unix/ibase/ibase.cpp b/config.tests/unix/ibase/ibase.cpp index e4d64be..13555c7 100644 --- a/config.tests/unix/ibase/ibase.cpp +++ b/config.tests/unix/ibase/ibase.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/config.tests/unix/iconv/iconv.cpp b/config.tests/unix/iconv/iconv.cpp index 251862b..da755e0 100644 --- a/config.tests/unix/iconv/iconv.cpp +++ b/config.tests/unix/iconv/iconv.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/config.tests/unix/inotify/inotifytest.cpp b/config.tests/unix/inotify/inotifytest.cpp index 5ce033b..642c0b7 100644 --- a/config.tests/unix/inotify/inotifytest.cpp +++ b/config.tests/unix/inotify/inotifytest.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/config.tests/unix/ipv6/ipv6test.cpp b/config.tests/unix/ipv6/ipv6test.cpp index 95d7a68..51f24e4 100644 --- a/config.tests/unix/ipv6/ipv6test.cpp +++ b/config.tests/unix/ipv6/ipv6test.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/config.tests/unix/ipv6ifname/ipv6ifname.cpp b/config.tests/unix/ipv6ifname/ipv6ifname.cpp index 9a3e7fb..02dd9b5 100644 --- a/config.tests/unix/ipv6ifname/ipv6ifname.cpp +++ b/config.tests/unix/ipv6ifname/ipv6ifname.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/config.tests/unix/iwmmxt/iwmmxt.cpp b/config.tests/unix/iwmmxt/iwmmxt.cpp index 0f66b94..d61cad6 100644 --- a/config.tests/unix/iwmmxt/iwmmxt.cpp +++ b/config.tests/unix/iwmmxt/iwmmxt.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/config.tests/unix/largefile/largefiletest.cpp b/config.tests/unix/largefile/largefiletest.cpp index 4f3ba4a..a647f99 100644 --- a/config.tests/unix/largefile/largefiletest.cpp +++ b/config.tests/unix/largefile/largefiletest.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/config.tests/unix/libjpeg/libjpeg.cpp b/config.tests/unix/libjpeg/libjpeg.cpp index 10f7669..0a1f542 100644 --- a/config.tests/unix/libjpeg/libjpeg.cpp +++ b/config.tests/unix/libjpeg/libjpeg.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/config.tests/unix/libmng/libmng.cpp b/config.tests/unix/libmng/libmng.cpp index acb8ea9..a07169c 100644 --- a/config.tests/unix/libmng/libmng.cpp +++ b/config.tests/unix/libmng/libmng.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/config.tests/unix/libpng/libpng.cpp b/config.tests/unix/libpng/libpng.cpp index 2eff398..486bb41 100644 --- a/config.tests/unix/libpng/libpng.cpp +++ b/config.tests/unix/libpng/libpng.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/config.tests/unix/libtiff/libtiff.cpp b/config.tests/unix/libtiff/libtiff.cpp index 4634413..0d0ced8 100644 --- a/config.tests/unix/libtiff/libtiff.cpp +++ b/config.tests/unix/libtiff/libtiff.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/config.tests/unix/mmx/mmx.cpp b/config.tests/unix/mmx/mmx.cpp index ddbe78f..fcab4d1 100644 --- a/config.tests/unix/mmx/mmx.cpp +++ b/config.tests/unix/mmx/mmx.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/config.tests/unix/mremap/mremap.cpp b/config.tests/unix/mremap/mremap.cpp index 785d223..4060118 100644 --- a/config.tests/unix/mremap/mremap.cpp +++ b/config.tests/unix/mremap/mremap.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/config.tests/unix/mysql/mysql.cpp b/config.tests/unix/mysql/mysql.cpp index 306ee52..e40ff86 100644 --- a/config.tests/unix/mysql/mysql.cpp +++ b/config.tests/unix/mysql/mysql.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/config.tests/unix/nis/nis.cpp b/config.tests/unix/nis/nis.cpp index 1d18b63..e78840b 100644 --- a/config.tests/unix/nis/nis.cpp +++ b/config.tests/unix/nis/nis.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/config.tests/unix/oci/oci.cpp b/config.tests/unix/oci/oci.cpp index cb6198b..82a59fc 100644 --- a/config.tests/unix/oci/oci.cpp +++ b/config.tests/unix/oci/oci.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/config.tests/unix/odbc/odbc.cpp b/config.tests/unix/odbc/odbc.cpp index 6e80c2a..9e2e25c 100644 --- a/config.tests/unix/odbc/odbc.cpp +++ b/config.tests/unix/odbc/odbc.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/config.tests/unix/opengles1/opengles1.cpp b/config.tests/unix/opengles1/opengles1.cpp index cd197f2..56ad56c 100644 --- a/config.tests/unix/opengles1/opengles1.cpp +++ b/config.tests/unix/opengles1/opengles1.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/config.tests/unix/opengles1cl/opengles1cl.cpp b/config.tests/unix/opengles1cl/opengles1cl.cpp index 0368c89..c562aec 100644 --- a/config.tests/unix/opengles1cl/opengles1cl.cpp +++ b/config.tests/unix/opengles1cl/opengles1cl.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/config.tests/unix/opengles2/opengles2.cpp b/config.tests/unix/opengles2/opengles2.cpp index 1236552..42cfffa 100644 --- a/config.tests/unix/opengles2/opengles2.cpp +++ b/config.tests/unix/opengles2/opengles2.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/config.tests/unix/openssl/openssl.cpp b/config.tests/unix/openssl/openssl.cpp index 598939c..ccd5d4f 100644 --- a/config.tests/unix/openssl/openssl.cpp +++ b/config.tests/unix/openssl/openssl.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/config.tests/unix/psql/psql.cpp b/config.tests/unix/psql/psql.cpp index f3647a7..79aee5f 100644 --- a/config.tests/unix/psql/psql.cpp +++ b/config.tests/unix/psql/psql.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/config.tests/unix/ptrsize/ptrsizetest.cpp b/config.tests/unix/ptrsize/ptrsizetest.cpp index ddb2aaf..c66013b 100644 --- a/config.tests/unix/ptrsize/ptrsizetest.cpp +++ b/config.tests/unix/ptrsize/ptrsizetest.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/config.tests/unix/sqlite/sqlite.cpp b/config.tests/unix/sqlite/sqlite.cpp index 8d43abe..b41e6d4 100644 --- a/config.tests/unix/sqlite/sqlite.cpp +++ b/config.tests/unix/sqlite/sqlite.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/config.tests/unix/sqlite2/sqlite2.cpp b/config.tests/unix/sqlite2/sqlite2.cpp index ebbd70b..9be380b 100644 --- a/config.tests/unix/sqlite2/sqlite2.cpp +++ b/config.tests/unix/sqlite2/sqlite2.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/config.tests/unix/sse/sse.cpp b/config.tests/unix/sse/sse.cpp index 47a24fa..90f02a9 100644 --- a/config.tests/unix/sse/sse.cpp +++ b/config.tests/unix/sse/sse.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/config.tests/unix/sse2/sse2.cpp b/config.tests/unix/sse2/sse2.cpp index 7729fc4..d227f06 100644 --- a/config.tests/unix/sse2/sse2.cpp +++ b/config.tests/unix/sse2/sse2.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/config.tests/unix/stdint/main.cpp b/config.tests/unix/stdint/main.cpp index 7cf6842..82a601c 100644 --- a/config.tests/unix/stdint/main.cpp +++ b/config.tests/unix/stdint/main.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/config.tests/unix/stl/stltest.cpp b/config.tests/unix/stl/stltest.cpp index 871a047..cf5c5b8 100644 --- a/config.tests/unix/stl/stltest.cpp +++ b/config.tests/unix/stl/stltest.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/config.tests/unix/tds/tds.cpp b/config.tests/unix/tds/tds.cpp index b2f702b..94b9147 100644 --- a/config.tests/unix/tds/tds.cpp +++ b/config.tests/unix/tds/tds.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/config.tests/unix/tslib/tslib.cpp b/config.tests/unix/tslib/tslib.cpp index 5dc4fab..3d46639 100644 --- a/config.tests/unix/tslib/tslib.cpp +++ b/config.tests/unix/tslib/tslib.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/config.tests/unix/zlib/zlib.cpp b/config.tests/unix/zlib/zlib.cpp index 005ca3c..c0f22d3 100644 --- a/config.tests/unix/zlib/zlib.cpp +++ b/config.tests/unix/zlib/zlib.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/config.tests/x11/fontconfig/fontconfig.cpp b/config.tests/x11/fontconfig/fontconfig.cpp index 64ab2d7..f2039e0 100644 --- a/config.tests/x11/fontconfig/fontconfig.cpp +++ b/config.tests/x11/fontconfig/fontconfig.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/config.tests/x11/glxfbconfig/glxfbconfig.cpp b/config.tests/x11/glxfbconfig/glxfbconfig.cpp index b4b780f..dd809aa 100644 --- a/config.tests/x11/glxfbconfig/glxfbconfig.cpp +++ b/config.tests/x11/glxfbconfig/glxfbconfig.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/config.tests/x11/mitshm/mitshm.cpp b/config.tests/x11/mitshm/mitshm.cpp index 812c8cc..555ff78 100644 --- a/config.tests/x11/mitshm/mitshm.cpp +++ b/config.tests/x11/mitshm/mitshm.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/config.tests/x11/notype/notypetest.cpp b/config.tests/x11/notype/notypetest.cpp index 922116b..6059252 100644 --- a/config.tests/x11/notype/notypetest.cpp +++ b/config.tests/x11/notype/notypetest.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/config.tests/x11/opengl/opengl.cpp b/config.tests/x11/opengl/opengl.cpp index c067df2..aea9d95 100644 --- a/config.tests/x11/opengl/opengl.cpp +++ b/config.tests/x11/opengl/opengl.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/config.tests/x11/sm/sm.cpp b/config.tests/x11/sm/sm.cpp index 05e2b11e..38f3273 100644 --- a/config.tests/x11/sm/sm.cpp +++ b/config.tests/x11/sm/sm.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/config.tests/x11/xcursor/xcursor.cpp b/config.tests/x11/xcursor/xcursor.cpp index 0d96e61..dbcdaa7 100644 --- a/config.tests/x11/xcursor/xcursor.cpp +++ b/config.tests/x11/xcursor/xcursor.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/config.tests/x11/xfixes/xfixes.cpp b/config.tests/x11/xfixes/xfixes.cpp index 07d95a4..f3b4c50 100644 --- a/config.tests/x11/xfixes/xfixes.cpp +++ b/config.tests/x11/xfixes/xfixes.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/config.tests/x11/xinerama/xinerama.cpp b/config.tests/x11/xinerama/xinerama.cpp index 1e83d1c..04ad597 100644 --- a/config.tests/x11/xinerama/xinerama.cpp +++ b/config.tests/x11/xinerama/xinerama.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/config.tests/x11/xinput/xinput.cpp b/config.tests/x11/xinput/xinput.cpp index 1166269..70d074e 100644 --- a/config.tests/x11/xinput/xinput.cpp +++ b/config.tests/x11/xinput/xinput.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/config.tests/x11/xkb/xkb.cpp b/config.tests/x11/xkb/xkb.cpp index 0ddd65c..2aa64e8 100644 --- a/config.tests/x11/xkb/xkb.cpp +++ b/config.tests/x11/xkb/xkb.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/config.tests/x11/xlib/xlib.cpp b/config.tests/x11/xlib/xlib.cpp index 0ad7408..f4a4c8a 100644 --- a/config.tests/x11/xlib/xlib.cpp +++ b/config.tests/x11/xlib/xlib.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/config.tests/x11/xrandr/xrandr.cpp b/config.tests/x11/xrandr/xrandr.cpp index a9f9e97..efa6636 100644 --- a/config.tests/x11/xrandr/xrandr.cpp +++ b/config.tests/x11/xrandr/xrandr.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/config.tests/x11/xrender/xrender.cpp b/config.tests/x11/xrender/xrender.cpp index 320b8e4..1c59ed6 100644 --- a/config.tests/x11/xrender/xrender.cpp +++ b/config.tests/x11/xrender/xrender.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/config.tests/x11/xshape/xshape.cpp b/config.tests/x11/xshape/xshape.cpp index 0bc1341..940ba75 100644 --- a/config.tests/x11/xshape/xshape.cpp +++ b/config.tests/x11/xshape/xshape.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/config.tests/x11/xsync/xsync.cpp b/config.tests/x11/xsync/xsync.cpp index 8d5c625..1634abd 100644 --- a/config.tests/x11/xsync/xsync.cpp +++ b/config.tests/x11/xsync/xsync.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/affine/main.cpp b/demos/affine/main.cpp index ca0ce9a..c0bd03b 100644 --- a/demos/affine/main.cpp +++ b/demos/affine/main.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/affine/xform.cpp b/demos/affine/xform.cpp index e87f9fa..32ff89c 100644 --- a/demos/affine/xform.cpp +++ b/demos/affine/xform.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/affine/xform.h b/demos/affine/xform.h index 38d9913..2c76c22 100644 --- a/demos/affine/xform.h +++ b/demos/affine/xform.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/arthurplugin/plugin.cpp b/demos/arthurplugin/plugin.cpp index 3b17c8d..19fecbc 100644 --- a/demos/arthurplugin/plugin.cpp +++ b/demos/arthurplugin/plugin.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/books/bookdelegate.cpp b/demos/books/bookdelegate.cpp index c093bc4..7db0bf1 100644 --- a/demos/books/bookdelegate.cpp +++ b/demos/books/bookdelegate.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/books/bookdelegate.h b/demos/books/bookdelegate.h index 957fac2..284b651 100644 --- a/demos/books/bookdelegate.h +++ b/demos/books/bookdelegate.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/books/bookwindow.cpp b/demos/books/bookwindow.cpp index 936064f..638a6fb 100644 --- a/demos/books/bookwindow.cpp +++ b/demos/books/bookwindow.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/books/bookwindow.h b/demos/books/bookwindow.h index 16610a2..2f3bdfd 100644 --- a/demos/books/bookwindow.h +++ b/demos/books/bookwindow.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/books/initdb.h b/demos/books/initdb.h index d65fd10..868393f 100644 --- a/demos/books/initdb.h +++ b/demos/books/initdb.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/books/main.cpp b/demos/books/main.cpp index 0df9c6d..c9a7365 100644 --- a/demos/books/main.cpp +++ b/demos/books/main.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/boxes/basic.fsh b/demos/boxes/basic.fsh index 8fdd0af..17ce8bd 100644 --- a/demos/boxes/basic.fsh +++ b/demos/boxes/basic.fsh @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/boxes/basic.vsh b/demos/boxes/basic.vsh index 1b16024..d87f4a2 100644 --- a/demos/boxes/basic.vsh +++ b/demos/boxes/basic.vsh @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/boxes/dotted.fsh b/demos/boxes/dotted.fsh index 8c251b4..b1c359f 100644 --- a/demos/boxes/dotted.fsh +++ b/demos/boxes/dotted.fsh @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/boxes/fresnel.fsh b/demos/boxes/fresnel.fsh index 938224d..4145efc 100644 --- a/demos/boxes/fresnel.fsh +++ b/demos/boxes/fresnel.fsh @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/boxes/glass.fsh b/demos/boxes/glass.fsh index 940bfdb..bbd1e12 100644 --- a/demos/boxes/glass.fsh +++ b/demos/boxes/glass.fsh @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/boxes/glbuffers.cpp b/demos/boxes/glbuffers.cpp index 78d892b..69d7ad8 100644 --- a/demos/boxes/glbuffers.cpp +++ b/demos/boxes/glbuffers.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/boxes/glbuffers.h b/demos/boxes/glbuffers.h index 396c873..71c4012 100644 --- a/demos/boxes/glbuffers.h +++ b/demos/boxes/glbuffers.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/boxes/glextensions.cpp b/demos/boxes/glextensions.cpp index f17ea7b..20aaebe 100644 --- a/demos/boxes/glextensions.cpp +++ b/demos/boxes/glextensions.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/boxes/glextensions.h b/demos/boxes/glextensions.h index 3145f0d..7520a57 100644 --- a/demos/boxes/glextensions.h +++ b/demos/boxes/glextensions.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/boxes/glshaders.cpp b/demos/boxes/glshaders.cpp index 0684bbf..7622858 100644 --- a/demos/boxes/glshaders.cpp +++ b/demos/boxes/glshaders.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/boxes/glshaders.h b/demos/boxes/glshaders.h index aa33767..7380c4d 100644 --- a/demos/boxes/glshaders.h +++ b/demos/boxes/glshaders.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/boxes/gltrianglemesh.h b/demos/boxes/gltrianglemesh.h index da84fa8..70c9e29 100644 --- a/demos/boxes/gltrianglemesh.h +++ b/demos/boxes/gltrianglemesh.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/boxes/granite.fsh b/demos/boxes/granite.fsh index 957d4ed..41dfefd 100644 --- a/demos/boxes/granite.fsh +++ b/demos/boxes/granite.fsh @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/boxes/main.cpp b/demos/boxes/main.cpp index 652436b..8a61df2 100644 --- a/demos/boxes/main.cpp +++ b/demos/boxes/main.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/boxes/marble.fsh b/demos/boxes/marble.fsh index 57ea38e..62084b4 100644 --- a/demos/boxes/marble.fsh +++ b/demos/boxes/marble.fsh @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/boxes/qtbox.cpp b/demos/boxes/qtbox.cpp index 30090b0..2255a38 100644 --- a/demos/boxes/qtbox.cpp +++ b/demos/boxes/qtbox.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/boxes/qtbox.h b/demos/boxes/qtbox.h index 57e274f..260e134 100644 --- a/demos/boxes/qtbox.h +++ b/demos/boxes/qtbox.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/boxes/reflection.fsh b/demos/boxes/reflection.fsh index 2614b99..5cc9f38 100644 --- a/demos/boxes/reflection.fsh +++ b/demos/boxes/reflection.fsh @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/boxes/refraction.fsh b/demos/boxes/refraction.fsh index 5491bf8..0a16521 100644 --- a/demos/boxes/refraction.fsh +++ b/demos/boxes/refraction.fsh @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/boxes/roundedbox.cpp b/demos/boxes/roundedbox.cpp index de5af8b..16e9616 100644 --- a/demos/boxes/roundedbox.cpp +++ b/demos/boxes/roundedbox.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/boxes/roundedbox.h b/demos/boxes/roundedbox.h index a0c0b23..4f10bde 100644 --- a/demos/boxes/roundedbox.h +++ b/demos/boxes/roundedbox.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/boxes/scene.cpp b/demos/boxes/scene.cpp index 4610e5d..29aece9 100644 --- a/demos/boxes/scene.cpp +++ b/demos/boxes/scene.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/boxes/scene.h b/demos/boxes/scene.h index 04686ec..cc1dace 100644 --- a/demos/boxes/scene.h +++ b/demos/boxes/scene.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/boxes/trackball.cpp b/demos/boxes/trackball.cpp index 186dd76..2dec679 100644 --- a/demos/boxes/trackball.cpp +++ b/demos/boxes/trackball.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/boxes/trackball.h b/demos/boxes/trackball.h index b6de3d8..817595f 100644 --- a/demos/boxes/trackball.h +++ b/demos/boxes/trackball.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/boxes/vector.h b/demos/boxes/vector.h index 76e26b5..0923b63 100644 --- a/demos/boxes/vector.h +++ b/demos/boxes/vector.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/boxes/wood.fsh b/demos/boxes/wood.fsh index be5bd62..c0536d2 100644 --- a/demos/boxes/wood.fsh +++ b/demos/boxes/wood.fsh @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/browser/autosaver.cpp b/demos/browser/autosaver.cpp index ac677a4..36a0d3f 100644 --- a/demos/browser/autosaver.cpp +++ b/demos/browser/autosaver.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/browser/autosaver.h b/demos/browser/autosaver.h index 6559463..8562417 100644 --- a/demos/browser/autosaver.h +++ b/demos/browser/autosaver.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/browser/bookmarks.cpp b/demos/browser/bookmarks.cpp index db042d2..660931c 100644 --- a/demos/browser/bookmarks.cpp +++ b/demos/browser/bookmarks.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/browser/bookmarks.h b/demos/browser/bookmarks.h index f9b920e..363e67b 100644 --- a/demos/browser/bookmarks.h +++ b/demos/browser/bookmarks.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/browser/browserapplication.cpp b/demos/browser/browserapplication.cpp index 8262d22..09484e8 100644 --- a/demos/browser/browserapplication.cpp +++ b/demos/browser/browserapplication.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/browser/browserapplication.h b/demos/browser/browserapplication.h index afc3e18..ff907a1 100644 --- a/demos/browser/browserapplication.h +++ b/demos/browser/browserapplication.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/browser/browsermainwindow.cpp b/demos/browser/browsermainwindow.cpp index 4b93ee2..8f68c07 100644 --- a/demos/browser/browsermainwindow.cpp +++ b/demos/browser/browsermainwindow.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/browser/browsermainwindow.h b/demos/browser/browsermainwindow.h index c7f17a6..6a0d7e9 100644 --- a/demos/browser/browsermainwindow.h +++ b/demos/browser/browsermainwindow.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/browser/chasewidget.cpp b/demos/browser/chasewidget.cpp index 8c73f26..7047acc 100644 --- a/demos/browser/chasewidget.cpp +++ b/demos/browser/chasewidget.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/browser/chasewidget.h b/demos/browser/chasewidget.h index b00805c..3bcb8d6 100644 --- a/demos/browser/chasewidget.h +++ b/demos/browser/chasewidget.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/browser/cookiejar.cpp b/demos/browser/cookiejar.cpp index 6083a75..d4083a2 100644 --- a/demos/browser/cookiejar.cpp +++ b/demos/browser/cookiejar.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/browser/cookiejar.h b/demos/browser/cookiejar.h index f73ef8d..58f92dc 100644 --- a/demos/browser/cookiejar.h +++ b/demos/browser/cookiejar.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/browser/downloadmanager.cpp b/demos/browser/downloadmanager.cpp index dbef2bd..7ee482f 100644 --- a/demos/browser/downloadmanager.cpp +++ b/demos/browser/downloadmanager.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/browser/downloadmanager.h b/demos/browser/downloadmanager.h index a46c605..6a648cb 100644 --- a/demos/browser/downloadmanager.h +++ b/demos/browser/downloadmanager.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/browser/edittableview.cpp b/demos/browser/edittableview.cpp index 7709128..9612e06 100644 --- a/demos/browser/edittableview.cpp +++ b/demos/browser/edittableview.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/browser/edittableview.h b/demos/browser/edittableview.h index e123db8..fdca1d2 100644 --- a/demos/browser/edittableview.h +++ b/demos/browser/edittableview.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/browser/edittreeview.cpp b/demos/browser/edittreeview.cpp index cfb728a..36d28ad 100644 --- a/demos/browser/edittreeview.cpp +++ b/demos/browser/edittreeview.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/browser/edittreeview.h b/demos/browser/edittreeview.h index 22ffe50..b97f5a1 100644 --- a/demos/browser/edittreeview.h +++ b/demos/browser/edittreeview.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/browser/history.cpp b/demos/browser/history.cpp index abe9f3c2..e8f0b5b 100644 --- a/demos/browser/history.cpp +++ b/demos/browser/history.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/browser/history.h b/demos/browser/history.h index 2c56126..45741c0 100644 --- a/demos/browser/history.h +++ b/demos/browser/history.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/browser/main.cpp b/demos/browser/main.cpp index 2d8fef7..db6c186 100644 --- a/demos/browser/main.cpp +++ b/demos/browser/main.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/browser/modelmenu.cpp b/demos/browser/modelmenu.cpp index 47dc9e7..a776906 100644 --- a/demos/browser/modelmenu.cpp +++ b/demos/browser/modelmenu.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/browser/modelmenu.h b/demos/browser/modelmenu.h index 8e42861..8d1df10 100644 --- a/demos/browser/modelmenu.h +++ b/demos/browser/modelmenu.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/browser/networkaccessmanager.cpp b/demos/browser/networkaccessmanager.cpp index 3781652..c420e5b 100644 --- a/demos/browser/networkaccessmanager.cpp +++ b/demos/browser/networkaccessmanager.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/browser/networkaccessmanager.h b/demos/browser/networkaccessmanager.h index 381cb50..58757f3 100644 --- a/demos/browser/networkaccessmanager.h +++ b/demos/browser/networkaccessmanager.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/browser/searchlineedit.cpp b/demos/browser/searchlineedit.cpp index a9b924e..f7cb878 100644 --- a/demos/browser/searchlineedit.cpp +++ b/demos/browser/searchlineedit.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/browser/searchlineedit.h b/demos/browser/searchlineedit.h index fcc7149..74e1898 100644 --- a/demos/browser/searchlineedit.h +++ b/demos/browser/searchlineedit.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/browser/settings.cpp b/demos/browser/settings.cpp index 6c49e26..10aad50 100644 --- a/demos/browser/settings.cpp +++ b/demos/browser/settings.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/browser/settings.h b/demos/browser/settings.h index e08b068..785cae0 100644 --- a/demos/browser/settings.h +++ b/demos/browser/settings.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/browser/squeezelabel.cpp b/demos/browser/squeezelabel.cpp index 6876395..f6f3bf6 100644 --- a/demos/browser/squeezelabel.cpp +++ b/demos/browser/squeezelabel.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/browser/squeezelabel.h b/demos/browser/squeezelabel.h index 57f09b7..0c4305c 100644 --- a/demos/browser/squeezelabel.h +++ b/demos/browser/squeezelabel.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/browser/tabwidget.cpp b/demos/browser/tabwidget.cpp index 8531178..8ce5182 100644 --- a/demos/browser/tabwidget.cpp +++ b/demos/browser/tabwidget.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/browser/tabwidget.h b/demos/browser/tabwidget.h index d146d42..f7331dd 100644 --- a/demos/browser/tabwidget.h +++ b/demos/browser/tabwidget.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/browser/toolbarsearch.cpp b/demos/browser/toolbarsearch.cpp index 13a1ae8..df779dc 100644 --- a/demos/browser/toolbarsearch.cpp +++ b/demos/browser/toolbarsearch.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/browser/toolbarsearch.h b/demos/browser/toolbarsearch.h index 44256c4..b254f67 100644 --- a/demos/browser/toolbarsearch.h +++ b/demos/browser/toolbarsearch.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/browser/urllineedit.cpp b/demos/browser/urllineedit.cpp index 9f75b9a..1c3dec8 100644 --- a/demos/browser/urllineedit.cpp +++ b/demos/browser/urllineedit.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/browser/urllineedit.h b/demos/browser/urllineedit.h index b3ad545..98e2310 100644 --- a/demos/browser/urllineedit.h +++ b/demos/browser/urllineedit.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/browser/webview.cpp b/demos/browser/webview.cpp index 004e995..32299bc 100644 --- a/demos/browser/webview.cpp +++ b/demos/browser/webview.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/browser/webview.h b/demos/browser/webview.h index ce8b74d..dd5a5ea 100644 --- a/demos/browser/webview.h +++ b/demos/browser/webview.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/browser/xbel.cpp b/demos/browser/xbel.cpp index ed62868..2449d3c 100644 --- a/demos/browser/xbel.cpp +++ b/demos/browser/xbel.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/browser/xbel.h b/demos/browser/xbel.h index 2bdffe1..ece5505 100644 --- a/demos/browser/xbel.h +++ b/demos/browser/xbel.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/chip/chip.cpp b/demos/chip/chip.cpp index 3f26bb0..7940156 100644 --- a/demos/chip/chip.cpp +++ b/demos/chip/chip.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/chip/chip.h b/demos/chip/chip.h index dd987e3..f9e5fc2 100644 --- a/demos/chip/chip.h +++ b/demos/chip/chip.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/chip/main.cpp b/demos/chip/main.cpp index c82a085..4b39cdc 100644 --- a/demos/chip/main.cpp +++ b/demos/chip/main.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/chip/mainwindow.cpp b/demos/chip/mainwindow.cpp index 31c8f9b..73f4a93 100644 --- a/demos/chip/mainwindow.cpp +++ b/demos/chip/mainwindow.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/chip/mainwindow.h b/demos/chip/mainwindow.h index 5069d1c..927b6ea 100644 --- a/demos/chip/mainwindow.h +++ b/demos/chip/mainwindow.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/chip/view.cpp b/demos/chip/view.cpp index a53dc2d..e95c52f 100644 --- a/demos/chip/view.cpp +++ b/demos/chip/view.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/chip/view.h b/demos/chip/view.h index 64c6354..3c1c8bf 100644 --- a/demos/chip/view.h +++ b/demos/chip/view.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/composition/composition.cpp b/demos/composition/composition.cpp index d4cc164..bb8a02c 100644 --- a/demos/composition/composition.cpp +++ b/demos/composition/composition.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/composition/composition.h b/demos/composition/composition.h index 3889d32..7258d81 100644 --- a/demos/composition/composition.h +++ b/demos/composition/composition.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/composition/main.cpp b/demos/composition/main.cpp index dea6a11..3a959a9 100644 --- a/demos/composition/main.cpp +++ b/demos/composition/main.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/deform/main.cpp b/demos/deform/main.cpp index 50e284a..eb6acf8 100644 --- a/demos/deform/main.cpp +++ b/demos/deform/main.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/deform/pathdeform.cpp b/demos/deform/pathdeform.cpp index 165af05..beee7ff 100644 --- a/demos/deform/pathdeform.cpp +++ b/demos/deform/pathdeform.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/deform/pathdeform.h b/demos/deform/pathdeform.h index b18f838..2ec3823 100644 --- a/demos/deform/pathdeform.h +++ b/demos/deform/pathdeform.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/embedded/embeddedsvgviewer/embeddedsvgviewer.cpp b/demos/embedded/embeddedsvgviewer/embeddedsvgviewer.cpp index 42756a4..949dc9f 100644 --- a/demos/embedded/embeddedsvgviewer/embeddedsvgviewer.cpp +++ b/demos/embedded/embeddedsvgviewer/embeddedsvgviewer.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/embedded/embeddedsvgviewer/embeddedsvgviewer.h b/demos/embedded/embeddedsvgviewer/embeddedsvgviewer.h index 2c4aba9..7bbc5a4 100644 --- a/demos/embedded/embeddedsvgviewer/embeddedsvgviewer.h +++ b/demos/embedded/embeddedsvgviewer/embeddedsvgviewer.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/embedded/embeddedsvgviewer/main.cpp b/demos/embedded/embeddedsvgviewer/main.cpp index bea441c..0763f63 100644 --- a/demos/embedded/embeddedsvgviewer/main.cpp +++ b/demos/embedded/embeddedsvgviewer/main.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/embedded/fluidlauncher/demoapplication.cpp b/demos/embedded/fluidlauncher/demoapplication.cpp index 6f7159a..8e6279d 100644 --- a/demos/embedded/fluidlauncher/demoapplication.cpp +++ b/demos/embedded/fluidlauncher/demoapplication.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,27 +21,27 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ #include #include - + #include "demoapplication.h" diff --git a/demos/embedded/fluidlauncher/demoapplication.h b/demos/embedded/fluidlauncher/demoapplication.h index e4e7d29..ae24980 100644 --- a/demos/embedded/fluidlauncher/demoapplication.h +++ b/demos/embedded/fluidlauncher/demoapplication.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,25 +21,25 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ -#ifndef DEMO_APPLICATION_H +#ifndef DEMO_APPLICATION_H #define DEMO_APPLICATION_H #include diff --git a/demos/embedded/fluidlauncher/fluidlauncher.cpp b/demos/embedded/fluidlauncher/fluidlauncher.cpp index 27ec5b4..f8bd008 100644 --- a/demos/embedded/fluidlauncher/fluidlauncher.cpp +++ b/demos/embedded/fluidlauncher/fluidlauncher.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/embedded/fluidlauncher/fluidlauncher.h b/demos/embedded/fluidlauncher/fluidlauncher.h index 77d0980..cf6bd3a 100644 --- a/demos/embedded/fluidlauncher/fluidlauncher.h +++ b/demos/embedded/fluidlauncher/fluidlauncher.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/embedded/fluidlauncher/main.cpp b/demos/embedded/fluidlauncher/main.cpp index 85094ca..af693cc 100644 --- a/demos/embedded/fluidlauncher/main.cpp +++ b/demos/embedded/fluidlauncher/main.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/embedded/fluidlauncher/pictureflow.cpp b/demos/embedded/fluidlauncher/pictureflow.cpp index 1c4197a..16e58a0 100644 --- a/demos/embedded/fluidlauncher/pictureflow.cpp +++ b/demos/embedded/fluidlauncher/pictureflow.cpp @@ -1,63 +1,40 @@ /**************************************************************************** ** -** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies) -** This is version of the Pictureflow animated image show widget modified by Nokia. +** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). +** Contact: Nokia Corporation (qt-info@nokia.com) ** -** $QT_BEGIN_LICENSE:LGPL$ -** No Commercial Usage -** This file contains pre-release code and may not be distributed. -** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** This file is part of the ActiveQt framework of the Qt Toolkit. ** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** $QT_BEGIN_LICENSE:BSD$ +** You may use this file under the terms of the BSD license as follows: ** -** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this -** package. +** "Redistribution and use in source and binary forms, with or without +** modification, are permitted provided that the following conditions are +** met: +** * Redistributions of source code must retain the above copyright +** notice, this list of conditions and the following disclaimer. +** * Redistributions in binary form must reproduce the above copyright +** notice, this list of conditions and the following disclaimer in +** the documentation and/or other materials provided with the +** distribution. +** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor +** the names of its contributors may be used to endorse or promote +** products derived from this software without specific prior written +** permission. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. -** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. +** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." ** $QT_END_LICENSE$ -* -* -* Redistribution and use in source and binary forms, with or without -* modification, are permitted provided that the following conditions are met: -* * Redistributions of source code must retain the above copyright -* notice, this list of conditions and the following disclaimer. -* * Redistributions in binary form must reproduce the above copyright -* notice, this list of conditions and the following disclaimer in the -* documentation and/or other materials provided with the distribution. -* * Neither the name of the nor the -* names of its contributors may be used to endorse or promote products -* derived from this software without specific prior written permission. -* -* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY -* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -* DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY -* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND -* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -* +** ****************************************************************************/ /* diff --git a/demos/embedded/fluidlauncher/pictureflow.h b/demos/embedded/fluidlauncher/pictureflow.h index 7130aee..747f09c 100644 --- a/demos/embedded/fluidlauncher/pictureflow.h +++ b/demos/embedded/fluidlauncher/pictureflow.h @@ -1,64 +1,42 @@ /**************************************************************************** -* -* Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies) -* This is version of the Pictureflow animated image show widget modified by Nokia. -* -* $QT_BEGIN_LICENSE:LGPL$ -* No Commercial Usage -* This file contains pre-release code and may not be distributed. -* You may use this file in accordance with the terms and conditions -* contained in the either Technology Preview License Agreement or the -* Beta Release License Agreement. -* -* GNU Lesser General Public License Usage -* Alternatively, this file may be used under the terms of the GNU Lesser -* General Public License version 2.1 as published by the Free Software -* Foundation and appearing in the file LICENSE.LGPL included in the -* packaging of this file. Please review the following information to -* ensure the GNU Lesser General Public License version 2.1 requirements -* will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -* -* In addition, as a special exception, Nokia gives you certain -* additional rights. These rights are described in the Nokia Qt LGPL -* Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this -* package. -* -* GNU General Public License Usage -* Alternatively, this file may be used under the terms of the GNU -* General Public License version 3.0 as published by the Free Software -* Foundation and appearing in the file LICENSE.GPL included in the -* packaging of this file. Please review the following information to -* ensure the GNU General Public License version 3.0 requirements will be -* met: http://www.gnu.org/copyleft/gpl.html. -* -* If you are unsure which license is appropriate for your use, please -* contact the sales department at http://qt.nokia.com/contact. -* $QT_END_LICENSE$ -* -* -* Redistribution and use in source and binary forms, with or without -* modification, are permitted provided that the following conditions are met: -* * Redistributions of source code must retain the above copyright -* notice, this list of conditions and the following disclaimer. -* * Redistributions in binary form must reproduce the above copyright -* notice, this list of conditions and the following disclaimer in the -* documentation and/or other materials provided with the distribution. -* * Neither the name of the nor the -* names of its contributors may be used to endorse or promote products -* derived from this software without specific prior written permission. -* -* THIS SOFTWARE IS PROVIDED BY TROLLTECH ASA ``AS IS'' AND ANY -* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -* DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY -* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND -* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - +** +** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). +** Contact: Nokia Corporation (qt-info@nokia.com) +** +** This file is part of the ActiveQt framework of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:BSD$ +** You may use this file under the terms of the BSD license as follows: +** +** "Redistribution and use in source and binary forms, with or without +** modification, are permitted provided that the following conditions are +** met: +** * Redistributions of source code must retain the above copyright +** notice, this list of conditions and the following disclaimer. +** * Redistributions in binary form must reproduce the above copyright +** notice, this list of conditions and the following disclaimer in +** the documentation and/or other materials provided with the +** distribution. +** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor +** the names of its contributors may be used to endorse or promote +** products derived from this software without specific prior written +** permission. +** +** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." +** $QT_END_LICENSE$ +** ****************************************************************************/ + /* ORIGINAL COPYRIGHT HEADER PictureFlow - animated image show widget diff --git a/demos/embedded/fluidlauncher/slideshow.cpp b/demos/embedded/fluidlauncher/slideshow.cpp index cb05a77..6c2ab40 100644 --- a/demos/embedded/fluidlauncher/slideshow.cpp +++ b/demos/embedded/fluidlauncher/slideshow.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/embedded/fluidlauncher/slideshow.h b/demos/embedded/fluidlauncher/slideshow.h index 0bb6ed3..874aa5e 100644 --- a/demos/embedded/fluidlauncher/slideshow.h +++ b/demos/embedded/fluidlauncher/slideshow.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,25 +21,25 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ -#ifndef SLIDESHOW_H +#ifndef SLIDESHOW_H #define SLIDESHOW_H #include diff --git a/demos/embedded/styledemo/main.cpp b/demos/embedded/styledemo/main.cpp index 7cb6b7f..44aadc1 100644 --- a/demos/embedded/styledemo/main.cpp +++ b/demos/embedded/styledemo/main.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/embedded/styledemo/stylewidget.cpp b/demos/embedded/styledemo/stylewidget.cpp index 1a2f83f..e3b65a7 100644 --- a/demos/embedded/styledemo/stylewidget.cpp +++ b/demos/embedded/styledemo/stylewidget.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/embedded/styledemo/stylewidget.h b/demos/embedded/styledemo/stylewidget.h index 7fe0a76..5fc8a63 100644 --- a/demos/embedded/styledemo/stylewidget.h +++ b/demos/embedded/styledemo/stylewidget.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/embeddeddialogs/customproxy.cpp b/demos/embeddeddialogs/customproxy.cpp index 7d32e40..00a447c 100644 --- a/demos/embeddeddialogs/customproxy.cpp +++ b/demos/embeddeddialogs/customproxy.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/embeddeddialogs/customproxy.h b/demos/embeddeddialogs/customproxy.h index 5e14b0c..6ef4117 100644 --- a/demos/embeddeddialogs/customproxy.h +++ b/demos/embeddeddialogs/customproxy.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/embeddeddialogs/embeddeddialog.cpp b/demos/embeddeddialogs/embeddeddialog.cpp index 9723a68..10b7927 100644 --- a/demos/embeddeddialogs/embeddeddialog.cpp +++ b/demos/embeddeddialogs/embeddeddialog.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/embeddeddialogs/embeddeddialog.h b/demos/embeddeddialogs/embeddeddialog.h index 8f09d5a..e1da721 100644 --- a/demos/embeddeddialogs/embeddeddialog.h +++ b/demos/embeddeddialogs/embeddeddialog.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/embeddeddialogs/main.cpp b/demos/embeddeddialogs/main.cpp index 02ac87f..bfda00e 100644 --- a/demos/embeddeddialogs/main.cpp +++ b/demos/embeddeddialogs/main.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/gradients/gradients.cpp b/demos/gradients/gradients.cpp index d8c57be..a11a868 100644 --- a/demos/gradients/gradients.cpp +++ b/demos/gradients/gradients.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/gradients/gradients.h b/demos/gradients/gradients.h index 891eb63..46de0a7 100644 --- a/demos/gradients/gradients.h +++ b/demos/gradients/gradients.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/gradients/main.cpp b/demos/gradients/main.cpp index 34200a9..2261ecf 100644 --- a/demos/gradients/main.cpp +++ b/demos/gradients/main.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/interview/main.cpp b/demos/interview/main.cpp index f84a2cc..50264b3 100644 --- a/demos/interview/main.cpp +++ b/demos/interview/main.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/interview/model.cpp b/demos/interview/model.cpp index fbd3e71..567d8fb 100644 --- a/demos/interview/model.cpp +++ b/demos/interview/model.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/interview/model.h b/demos/interview/model.h index 7660a8e..32973af 100644 --- a/demos/interview/model.h +++ b/demos/interview/model.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/macmainwindow/macmainwindow.h b/demos/macmainwindow/macmainwindow.h index 9088a46..0ec35ff 100644 --- a/demos/macmainwindow/macmainwindow.h +++ b/demos/macmainwindow/macmainwindow.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/macmainwindow/macmainwindow.mm b/demos/macmainwindow/macmainwindow.mm index e3d4932..1fdbac4 100644 --- a/demos/macmainwindow/macmainwindow.mm +++ b/demos/macmainwindow/macmainwindow.mm @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/macmainwindow/main.cpp b/demos/macmainwindow/main.cpp index 5df2587..d7517d5 100644 --- a/demos/macmainwindow/main.cpp +++ b/demos/macmainwindow/main.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/mainwindow/colorswatch.cpp b/demos/mainwindow/colorswatch.cpp index fdabd1f5..7e5862b 100644 --- a/demos/mainwindow/colorswatch.cpp +++ b/demos/mainwindow/colorswatch.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/mainwindow/colorswatch.h b/demos/mainwindow/colorswatch.h index 9f857f2..c3ebfb3 100644 --- a/demos/mainwindow/colorswatch.h +++ b/demos/mainwindow/colorswatch.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/mainwindow/main.cpp b/demos/mainwindow/main.cpp index 48a3bd9..630f1d0 100644 --- a/demos/mainwindow/main.cpp +++ b/demos/mainwindow/main.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/mainwindow/mainwindow.cpp b/demos/mainwindow/mainwindow.cpp index 88910e1..2530573 100644 --- a/demos/mainwindow/mainwindow.cpp +++ b/demos/mainwindow/mainwindow.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/mainwindow/mainwindow.h b/demos/mainwindow/mainwindow.h index 6c1f795..ca13828 100644 --- a/demos/mainwindow/mainwindow.h +++ b/demos/mainwindow/mainwindow.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/mainwindow/toolbar.cpp b/demos/mainwindow/toolbar.cpp index d3f3e60..4e2a9a9 100644 --- a/demos/mainwindow/toolbar.cpp +++ b/demos/mainwindow/toolbar.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/mainwindow/toolbar.h b/demos/mainwindow/toolbar.h index 263fde0..de3fc2f 100644 --- a/demos/mainwindow/toolbar.h +++ b/demos/mainwindow/toolbar.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/mediaplayer/main.cpp b/demos/mediaplayer/main.cpp index 8a6d71e..819a320 100644 --- a/demos/mediaplayer/main.cpp +++ b/demos/mediaplayer/main.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ***************************************************************************/ diff --git a/demos/mediaplayer/mediaplayer.cpp b/demos/mediaplayer/mediaplayer.cpp index 5a69e4f..59cee44 100644 --- a/demos/mediaplayer/mediaplayer.cpp +++ b/demos/mediaplayer/mediaplayer.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ***************************************************************************/ diff --git a/demos/mediaplayer/mediaplayer.h b/demos/mediaplayer/mediaplayer.h index 44ca9c0..1d024d4 100644 --- a/demos/mediaplayer/mediaplayer.h +++ b/demos/mediaplayer/mediaplayer.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ***************************************************************************/ diff --git a/demos/pathstroke/main.cpp b/demos/pathstroke/main.cpp index 2b3b932..eca69fc 100644 --- a/demos/pathstroke/main.cpp +++ b/demos/pathstroke/main.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/pathstroke/pathstroke.cpp b/demos/pathstroke/pathstroke.cpp index aa990a9..0f04c08 100644 --- a/demos/pathstroke/pathstroke.cpp +++ b/demos/pathstroke/pathstroke.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/pathstroke/pathstroke.h b/demos/pathstroke/pathstroke.h index ec5c4a5..b07471e 100644 --- a/demos/pathstroke/pathstroke.h +++ b/demos/pathstroke/pathstroke.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/qtdemo/colors.cpp b/demos/qtdemo/colors.cpp index d8efb42..f98ec57 100644 --- a/demos/qtdemo/colors.cpp +++ b/demos/qtdemo/colors.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/qtdemo/colors.h b/demos/qtdemo/colors.h index 0fa4bbf..3d2bb2a 100644 --- a/demos/qtdemo/colors.h +++ b/demos/qtdemo/colors.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/qtdemo/demoitem.cpp b/demos/qtdemo/demoitem.cpp index 813edfc..fcad022 100644 --- a/demos/qtdemo/demoitem.cpp +++ b/demos/qtdemo/demoitem.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/qtdemo/demoitem.h b/demos/qtdemo/demoitem.h index 87807c0..aa16c77 100644 --- a/demos/qtdemo/demoitem.h +++ b/demos/qtdemo/demoitem.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/qtdemo/demoitemanimation.cpp b/demos/qtdemo/demoitemanimation.cpp index 5ab17ef..ce4e3d5 100644 --- a/demos/qtdemo/demoitemanimation.cpp +++ b/demos/qtdemo/demoitemanimation.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/qtdemo/demoitemanimation.h b/demos/qtdemo/demoitemanimation.h index 8ab6e2c..592d9c6 100644 --- a/demos/qtdemo/demoitemanimation.h +++ b/demos/qtdemo/demoitemanimation.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/qtdemo/demoscene.cpp b/demos/qtdemo/demoscene.cpp index ce65f49..ae838d0 100644 --- a/demos/qtdemo/demoscene.cpp +++ b/demos/qtdemo/demoscene.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/qtdemo/demoscene.h b/demos/qtdemo/demoscene.h index 517d12e..bc5b36a 100644 --- a/demos/qtdemo/demoscene.h +++ b/demos/qtdemo/demoscene.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/qtdemo/demotextitem.cpp b/demos/qtdemo/demotextitem.cpp index a18f53f..e219bab 100644 --- a/demos/qtdemo/demotextitem.cpp +++ b/demos/qtdemo/demotextitem.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/qtdemo/demotextitem.h b/demos/qtdemo/demotextitem.h index 9bfa308..c8705be 100644 --- a/demos/qtdemo/demotextitem.h +++ b/demos/qtdemo/demotextitem.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/qtdemo/dockitem.cpp b/demos/qtdemo/dockitem.cpp index a8db34d..81a74d0 100644 --- a/demos/qtdemo/dockitem.cpp +++ b/demos/qtdemo/dockitem.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/qtdemo/dockitem.h b/demos/qtdemo/dockitem.h index 1db1dfd..2bc0b1e 100644 --- a/demos/qtdemo/dockitem.h +++ b/demos/qtdemo/dockitem.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/qtdemo/examplecontent.cpp b/demos/qtdemo/examplecontent.cpp index f929d65..36c9724 100644 --- a/demos/qtdemo/examplecontent.cpp +++ b/demos/qtdemo/examplecontent.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/qtdemo/examplecontent.h b/demos/qtdemo/examplecontent.h index bc85056..b3fde57 100644 --- a/demos/qtdemo/examplecontent.h +++ b/demos/qtdemo/examplecontent.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/qtdemo/guide.cpp b/demos/qtdemo/guide.cpp index 487e026..61ad354 100644 --- a/demos/qtdemo/guide.cpp +++ b/demos/qtdemo/guide.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/qtdemo/guide.h b/demos/qtdemo/guide.h index d8625cb..637d448 100644 --- a/demos/qtdemo/guide.h +++ b/demos/qtdemo/guide.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/qtdemo/guidecircle.cpp b/demos/qtdemo/guidecircle.cpp index 58f62b2..dd3e93b 100644 --- a/demos/qtdemo/guidecircle.cpp +++ b/demos/qtdemo/guidecircle.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/qtdemo/guidecircle.h b/demos/qtdemo/guidecircle.h index 9275a22..6031d8e 100644 --- a/demos/qtdemo/guidecircle.h +++ b/demos/qtdemo/guidecircle.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/qtdemo/guideline.cpp b/demos/qtdemo/guideline.cpp index d51eb21..1b6d3f5 100644 --- a/demos/qtdemo/guideline.cpp +++ b/demos/qtdemo/guideline.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/qtdemo/guideline.h b/demos/qtdemo/guideline.h index 80dbb0b..71dd1d3 100644 --- a/demos/qtdemo/guideline.h +++ b/demos/qtdemo/guideline.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/qtdemo/headingitem.cpp b/demos/qtdemo/headingitem.cpp index d325549..640138e 100644 --- a/demos/qtdemo/headingitem.cpp +++ b/demos/qtdemo/headingitem.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/qtdemo/headingitem.h b/demos/qtdemo/headingitem.h index 087d435..7c84c98 100644 --- a/demos/qtdemo/headingitem.h +++ b/demos/qtdemo/headingitem.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/qtdemo/imageitem.cpp b/demos/qtdemo/imageitem.cpp index 1d9e251..542aa23 100644 --- a/demos/qtdemo/imageitem.cpp +++ b/demos/qtdemo/imageitem.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/qtdemo/imageitem.h b/demos/qtdemo/imageitem.h index acaa7e0..ecd6b6c 100644 --- a/demos/qtdemo/imageitem.h +++ b/demos/qtdemo/imageitem.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/qtdemo/itemcircleanimation.cpp b/demos/qtdemo/itemcircleanimation.cpp index a8fc4d7..8298c6c 100644 --- a/demos/qtdemo/itemcircleanimation.cpp +++ b/demos/qtdemo/itemcircleanimation.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/qtdemo/itemcircleanimation.h b/demos/qtdemo/itemcircleanimation.h index a6bcb9b..0c3e145 100644 --- a/demos/qtdemo/itemcircleanimation.h +++ b/demos/qtdemo/itemcircleanimation.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/qtdemo/letteritem.cpp b/demos/qtdemo/letteritem.cpp index 8179278..165fbd4 100644 --- a/demos/qtdemo/letteritem.cpp +++ b/demos/qtdemo/letteritem.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/qtdemo/letteritem.h b/demos/qtdemo/letteritem.h index 7d6834e..0d735f9 100644 --- a/demos/qtdemo/letteritem.h +++ b/demos/qtdemo/letteritem.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/qtdemo/main.cpp b/demos/qtdemo/main.cpp index 6dc1200..020ed4c 100644 --- a/demos/qtdemo/main.cpp +++ b/demos/qtdemo/main.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/qtdemo/mainwindow.cpp b/demos/qtdemo/mainwindow.cpp index 59715a6..55e0b86 100644 --- a/demos/qtdemo/mainwindow.cpp +++ b/demos/qtdemo/mainwindow.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/qtdemo/mainwindow.h b/demos/qtdemo/mainwindow.h index 634a026..22c4883 100644 --- a/demos/qtdemo/mainwindow.h +++ b/demos/qtdemo/mainwindow.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/qtdemo/menucontent.cpp b/demos/qtdemo/menucontent.cpp index f548748..696618f 100644 --- a/demos/qtdemo/menucontent.cpp +++ b/demos/qtdemo/menucontent.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/qtdemo/menucontent.h b/demos/qtdemo/menucontent.h index 7a01852..bac80b3 100644 --- a/demos/qtdemo/menucontent.h +++ b/demos/qtdemo/menucontent.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/qtdemo/menumanager.cpp b/demos/qtdemo/menumanager.cpp index 005194a..12796dc 100644 --- a/demos/qtdemo/menumanager.cpp +++ b/demos/qtdemo/menumanager.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/qtdemo/menumanager.h b/demos/qtdemo/menumanager.h index 80758e4..a85aa8d 100644 --- a/demos/qtdemo/menumanager.h +++ b/demos/qtdemo/menumanager.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/qtdemo/scanitem.cpp b/demos/qtdemo/scanitem.cpp index 6438d89..33eaa16 100644 --- a/demos/qtdemo/scanitem.cpp +++ b/demos/qtdemo/scanitem.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/qtdemo/scanitem.h b/demos/qtdemo/scanitem.h index 8abc1b3..f2ac835 100644 --- a/demos/qtdemo/scanitem.h +++ b/demos/qtdemo/scanitem.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/qtdemo/score.cpp b/demos/qtdemo/score.cpp index 10c2578..7c8cd32 100644 --- a/demos/qtdemo/score.cpp +++ b/demos/qtdemo/score.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/qtdemo/score.h b/demos/qtdemo/score.h index 05ecab7..cc2577c 100644 --- a/demos/qtdemo/score.h +++ b/demos/qtdemo/score.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/qtdemo/textbutton.cpp b/demos/qtdemo/textbutton.cpp index 7a37ac1..baa2921 100644 --- a/demos/qtdemo/textbutton.cpp +++ b/demos/qtdemo/textbutton.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/qtdemo/textbutton.h b/demos/qtdemo/textbutton.h index 6ae762b..72bfa3c 100644 --- a/demos/qtdemo/textbutton.h +++ b/demos/qtdemo/textbutton.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/shared/arthurstyle.cpp b/demos/shared/arthurstyle.cpp index eece79d..d9780e5 100644 --- a/demos/shared/arthurstyle.cpp +++ b/demos/shared/arthurstyle.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/shared/arthurstyle.h b/demos/shared/arthurstyle.h index 95feaca..edf6a66 100644 --- a/demos/shared/arthurstyle.h +++ b/demos/shared/arthurstyle.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/shared/arthurwidgets.cpp b/demos/shared/arthurwidgets.cpp index 6ec5a3c..b332632 100644 --- a/demos/shared/arthurwidgets.cpp +++ b/demos/shared/arthurwidgets.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/shared/arthurwidgets.h b/demos/shared/arthurwidgets.h index 3aba30b..077858c 100644 --- a/demos/shared/arthurwidgets.h +++ b/demos/shared/arthurwidgets.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/shared/hoverpoints.cpp b/demos/shared/hoverpoints.cpp index 1d7b08f..4d4f8cf 100644 --- a/demos/shared/hoverpoints.cpp +++ b/demos/shared/hoverpoints.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/shared/hoverpoints.h b/demos/shared/hoverpoints.h index efd34cf..5a7f3c4 100644 --- a/demos/shared/hoverpoints.h +++ b/demos/shared/hoverpoints.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/spreadsheet/main.cpp b/demos/spreadsheet/main.cpp index 0d7bb4a..d24e8e2 100644 --- a/demos/spreadsheet/main.cpp +++ b/demos/spreadsheet/main.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/spreadsheet/printview.cpp b/demos/spreadsheet/printview.cpp index bcdec81..a31fef7 100644 --- a/demos/spreadsheet/printview.cpp +++ b/demos/spreadsheet/printview.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/spreadsheet/printview.h b/demos/spreadsheet/printview.h index 3106672..df84110 100644 --- a/demos/spreadsheet/printview.h +++ b/demos/spreadsheet/printview.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/spreadsheet/spreadsheet.cpp b/demos/spreadsheet/spreadsheet.cpp index 504a363..ab2d4b1 100644 --- a/demos/spreadsheet/spreadsheet.cpp +++ b/demos/spreadsheet/spreadsheet.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/spreadsheet/spreadsheet.h b/demos/spreadsheet/spreadsheet.h index d0a7fb6..efae4f4 100644 --- a/demos/spreadsheet/spreadsheet.h +++ b/demos/spreadsheet/spreadsheet.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/spreadsheet/spreadsheetdelegate.cpp b/demos/spreadsheet/spreadsheetdelegate.cpp index a7d801f..0cccf35 100644 --- a/demos/spreadsheet/spreadsheetdelegate.cpp +++ b/demos/spreadsheet/spreadsheetdelegate.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/spreadsheet/spreadsheetdelegate.h b/demos/spreadsheet/spreadsheetdelegate.h index d61d700..34c71a1 100644 --- a/demos/spreadsheet/spreadsheetdelegate.h +++ b/demos/spreadsheet/spreadsheetdelegate.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/spreadsheet/spreadsheetitem.cpp b/demos/spreadsheet/spreadsheetitem.cpp index de6683e..25acedb 100644 --- a/demos/spreadsheet/spreadsheetitem.cpp +++ b/demos/spreadsheet/spreadsheetitem.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/spreadsheet/spreadsheetitem.h b/demos/spreadsheet/spreadsheetitem.h index fc0a943..bb9e9f9 100644 --- a/demos/spreadsheet/spreadsheetitem.h +++ b/demos/spreadsheet/spreadsheetitem.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/sqlbrowser/browser.cpp b/demos/sqlbrowser/browser.cpp index 6fe3f81..224381e 100644 --- a/demos/sqlbrowser/browser.cpp +++ b/demos/sqlbrowser/browser.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/sqlbrowser/browser.h b/demos/sqlbrowser/browser.h index 1cfb07a..ea688f6 100644 --- a/demos/sqlbrowser/browser.h +++ b/demos/sqlbrowser/browser.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/sqlbrowser/connectionwidget.cpp b/demos/sqlbrowser/connectionwidget.cpp index 0afd721..c3ffa4f 100644 --- a/demos/sqlbrowser/connectionwidget.cpp +++ b/demos/sqlbrowser/connectionwidget.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/sqlbrowser/connectionwidget.h b/demos/sqlbrowser/connectionwidget.h index 8ec3935..9a97f82 100644 --- a/demos/sqlbrowser/connectionwidget.h +++ b/demos/sqlbrowser/connectionwidget.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/sqlbrowser/main.cpp b/demos/sqlbrowser/main.cpp index 47be464..21d937a 100644 --- a/demos/sqlbrowser/main.cpp +++ b/demos/sqlbrowser/main.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/sqlbrowser/qsqlconnectiondialog.cpp b/demos/sqlbrowser/qsqlconnectiondialog.cpp index d57ac7d..738807e 100644 --- a/demos/sqlbrowser/qsqlconnectiondialog.cpp +++ b/demos/sqlbrowser/qsqlconnectiondialog.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/sqlbrowser/qsqlconnectiondialog.h b/demos/sqlbrowser/qsqlconnectiondialog.h index 2bd84ff..b720159 100644 --- a/demos/sqlbrowser/qsqlconnectiondialog.h +++ b/demos/sqlbrowser/qsqlconnectiondialog.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/textedit/main.cpp b/demos/textedit/main.cpp index fda6a64..e6de3d3 100644 --- a/demos/textedit/main.cpp +++ b/demos/textedit/main.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/textedit/textedit.cpp b/demos/textedit/textedit.cpp index a9eff24..9cd6efd 100644 --- a/demos/textedit/textedit.cpp +++ b/demos/textedit/textedit.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/textedit/textedit.h b/demos/textedit/textedit.h index b94abf1..cb9a754 100644 --- a/demos/textedit/textedit.h +++ b/demos/textedit/textedit.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/undo/commands.cpp b/demos/undo/commands.cpp index ad01998..8a67286 100644 --- a/demos/undo/commands.cpp +++ b/demos/undo/commands.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/undo/commands.h b/demos/undo/commands.h index 5f6c04f..51f96fc 100644 --- a/demos/undo/commands.h +++ b/demos/undo/commands.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/undo/document.cpp b/demos/undo/document.cpp index 0340c42..cf361c1 100644 --- a/demos/undo/document.cpp +++ b/demos/undo/document.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/undo/document.h b/demos/undo/document.h index 9339597..b60406d 100644 --- a/demos/undo/document.h +++ b/demos/undo/document.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/undo/main.cpp b/demos/undo/main.cpp index 78db55f..7914372 100644 --- a/demos/undo/main.cpp +++ b/demos/undo/main.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/undo/mainwindow.cpp b/demos/undo/mainwindow.cpp index 353f06b..897434f 100644 --- a/demos/undo/mainwindow.cpp +++ b/demos/undo/mainwindow.cpp @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/undo/mainwindow.h b/demos/undo/mainwindow.h index 4d1810c..0bcc91c 100644 --- a/demos/undo/mainwindow.h +++ b/demos/undo/mainwindow.h @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** ** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/3rdparty.qdoc b/doc/src/3rdparty.qdoc index d24dfac..6afdfbb 100644 --- a/doc/src/3rdparty.qdoc +++ b/doc/src/3rdparty.qdoc @@ -9,8 +9,8 @@ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. +** contained in the Technology Preview License Agreement accompanying +** this package. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser @@ -21,20 +21,20 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +**