docs: Compile Fixes, Fixups in addressbook example

Reviewed-By: TrustMe
This commit is contained in:
Daniel Molkentin
2009-10-12 13:44:09 +02:00
parent 9a0896802d
commit cbee229700
2 changed files with 13 additions and 2 deletions

View File

@@ -1,3 +1,5 @@
#include <QFileDialog>
#include "addressbook.h" #include "addressbook.h"
#include "ui_addressbook.h" #include "ui_addressbook.h"
@@ -31,6 +33,12 @@ AddressBook::AddressBook(QWidget *parent)
SLOT(removeContact())); SLOT(removeContact()));
connect(ui->findButton, SIGNAL(clicked()), this, connect(ui->findButton, SIGNAL(clicked()), this,
SLOT(findContact())); SLOT(findContact()));
//! [connectSlots]
connect(ui->loadButton, SIGNAL(clicked()), this,
SLOT(loadFromFile()));
connect(ui->saveButton, SIGNAL(clicked()), this,
SLOT(saveToFile()));
//! [connectSlots]
setWindowTitle(tr("Simple Address Book")); setWindowTitle(tr("Simple Address Book"));
} }
@@ -292,7 +300,7 @@ void AddressBook::loadFromFile()
//! [loadFromFile part3] //! [loadFromFile part3]
if (contacts.isEmpty()) { if (contacts.isEmpty()) {
QMessagebox::information(this, tr("No contacts in file"), QMessageBox::information(this, tr("No contacts in file"),
tr("The file you are attempting to open contains no contacts.")); tr("The file you are attempting to open contains no contacts."));
} else { } else {
QMap<QString, QString>::iterator i = contacts.begin(); QMap<QString, QString>::iterator i = contacts.begin();

View File

@@ -1,3 +1,6 @@
#include <QFileDialog>
#include <QTextStream>
#include "addressbook.h" #include "addressbook.h"
#include "ui_addressbook.h" #include "ui_addressbook.h"
@@ -348,5 +351,5 @@ void AddressBook::exportAsVCard()
out << "END;VCARD" << "\n"; out << "END;VCARD" << "\n";
QMessageBox::information(this, tr("Export Successful"), QMessageBox::information(this, tr("Export Successful"),
tr("\%1\" has been exported as a vCard.").arg(name)); tr("\"%1\" has been exported as a vCard.").arg(name));
} }