~adamreichold/qpdfview/trunk

« back to all changes in this revision

Viewing changes to sources/fontsdialog.cpp

  • Committer: Adam Reichold
  • Date: 2014-03-29 10:20:32 UTC
  • Revision ID: adam.reichold@t-online.com-20140329102032-6z5yl9a2fkwm62rd
Make proper use of application and anonymous namespaces and fix a few header guards.

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
#include <QTableView>
28
28
#include <QVBoxLayout>
29
29
 
 
30
namespace qpdfview
 
31
{
 
32
 
30
33
FontsDialog::FontsDialog(QStandardItemModel* model, QWidget* parent) : QDialog(parent)
31
34
{
32
35
    m_tableView = new QTableView(this);
59
62
    layout()->addWidget(m_tableView);
60
63
    layout()->addWidget(m_dialogButtonBox);
61
64
}
 
65
 
 
66
} // qpdfview