diff options
| author | Leena Miettinen <riitta-leena.miettinen@qt.io> | 2016-09-21 10:46:21 +0200 |
|---|---|---|
| committer | Leena Miettinen <riitta-leena.miettinen@qt.io> | 2016-09-22 09:45:37 +0000 |
| commit | 5a7f77b6680b27711c21bc1a98d191a69e096005 (patch) | |
| tree | 91e376fb0695bb07c4662923ad7a585c43cdc73e /doc/tutorial/AddressBook/adddialog.cpp | |
| parent | 5e64f5933f8d4fafeac8036e2e0d8aa95e5d3b2d (diff) | |
Doc: Update Qt VS Tools docs to version 2.0
The docs were removed in a previous commit, so this commit
uses the standard doc file structure for Qt tools docs and
updates all screen shots.
Change-Id: I41193c18895ccab22ff66ef090668f161ead16fa
Reviewed-by: Topi Reiniö <topi.reinio@theqtcompany.com>
Reviewed-by: Karsten Heimrich <karsten.heimrich@qt.io>
Reviewed-by: Alex Blasche <alexander.blasche@qt.io>
Diffstat (limited to 'doc/tutorial/AddressBook/adddialog.cpp')
| -rw-r--r-- | doc/tutorial/AddressBook/adddialog.cpp | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/doc/tutorial/AddressBook/adddialog.cpp b/doc/tutorial/AddressBook/adddialog.cpp new file mode 100644 index 00000000..84c89ee5 --- /dev/null +++ b/doc/tutorial/AddressBook/adddialog.cpp @@ -0,0 +1,51 @@ +/**************************************************************************** +** +** Copyright (C) 2016 The Qt Company Ltd. +** Contact: http://www.qt.io/licensing/ +** +** This file is part of the QtSensors module 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 The Qt Company Ltd 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$ +** +****************************************************************************/ + +#include "adddialog.h" + +AddDialog::AddDialog(QWidget *parent) + : QDialog(parent) +{ + setupUi(this); +} + +AddDialog::~AddDialog() +{ +} |
