1 | /****************************************************************************
|
---|
2 | **
|
---|
3 | ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
---|
4 | ** All rights reserved.
|
---|
5 | ** Contact: Nokia Corporation ([email protected])
|
---|
6 | **
|
---|
7 | ** This file is part of the documentation of the Qt Toolkit.
|
---|
8 | **
|
---|
9 | ** $QT_BEGIN_LICENSE:LGPL$
|
---|
10 | ** Commercial Usage
|
---|
11 | ** Licensees holding valid Qt Commercial licenses may use this file in
|
---|
12 | ** accordance with the Qt Commercial License Agreement provided with the
|
---|
13 | ** Software or, alternatively, in accordance with the terms contained in
|
---|
14 | ** a written agreement between you and Nokia.
|
---|
15 | **
|
---|
16 | ** GNU Lesser General Public License Usage
|
---|
17 | ** Alternatively, this file may be used under the terms of the GNU Lesser
|
---|
18 | ** General Public License version 2.1 as published by the Free Software
|
---|
19 | ** Foundation and appearing in the file LICENSE.LGPL included in the
|
---|
20 | ** packaging of this file. Please review the following information to
|
---|
21 | ** ensure the GNU Lesser General Public License version 2.1 requirements
|
---|
22 | ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
---|
23 | **
|
---|
24 | ** In addition, as a special exception, Nokia gives you certain additional
|
---|
25 | ** rights. These rights are described in the Nokia Qt LGPL Exception
|
---|
26 | ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
---|
27 | **
|
---|
28 | ** GNU General Public License Usage
|
---|
29 | ** Alternatively, this file may be used under the terms of the GNU
|
---|
30 | ** General Public License version 3.0 as published by the Free Software
|
---|
31 | ** Foundation and appearing in the file LICENSE.GPL included in the
|
---|
32 | ** packaging of this file. Please review the following information to
|
---|
33 | ** ensure the GNU General Public License version 3.0 requirements will be
|
---|
34 | ** met: http://www.gnu.org/copyleft/gpl.html.
|
---|
35 | **
|
---|
36 | ** If you have questions regarding the use of this file, please contact
|
---|
37 | ** Nokia at [email protected].
|
---|
38 | ** $QT_END_LICENSE$
|
---|
39 | **
|
---|
40 | ****************************************************************************/
|
---|
41 |
|
---|
42 | /*!
|
---|
43 | \page bughowto.html
|
---|
44 | \title How to Report a Bug
|
---|
45 | \brief Information about ways to report bugs in Qt.
|
---|
46 |
|
---|
47 | If you think you have found a bug in Qt, we would like to hear
|
---|
48 | about it so that we can fix it.
|
---|
49 |
|
---|
50 | Before reporting a bug, please check the \l{FAQs}, \l{Platform
|
---|
51 | Notes}, and the \l{Qt Bug Tracker} on the Qt website to see
|
---|
52 | if the issue is already known.
|
---|
53 |
|
---|
54 | The first thing you should do is to sign up for an account for
|
---|
55 | the \l{Qt Bug Tracker}, if you do not already have one. Once you
|
---|
56 | have done that you can submit and track your bug reports and they
|
---|
57 | will be publicly available from the moment you submit them.
|
---|
58 |
|
---|
59 | Always include the following information in your bug report:
|
---|
60 |
|
---|
61 | \list 1
|
---|
62 | \o The name and version number of your compiler
|
---|
63 | \o The name and version number of your operating system
|
---|
64 | \o The version of Qt you are using, and what configure options it was
|
---|
65 | compiled with
|
---|
66 | \o Reliable and clear description on how to reproduce the problem
|
---|
67 | \endlist
|
---|
68 |
|
---|
69 | If possible, please provide a test written using the QtTest module
|
---|
70 | as this will improve the procedure of reproducing your problem and
|
---|
71 | allow the developers to address the issue in a more efficient way.
|
---|
72 |
|
---|
73 | Otherwise, if the problem you are reporting is only visible at run-time,
|
---|
74 | try to create a small test program that shows the problem when run.
|
---|
75 | Often, such a program can be created with some minor changes to one of
|
---|
76 | the many example programs in Qt's examples directory.
|
---|
77 |
|
---|
78 | If you have implemented a bug fix and want to contribute your fix
|
---|
79 | directly, then you can do so through the \l{Public Qt Repository}.
|
---|
80 | */
|
---|