Rename files to match class names

This commit is contained in:
Martin Kleusberg
2013-01-02 19:01:47 +01:00
parent 0edfb7e9d3
commit eef1c04020
36 changed files with 69 additions and 69 deletions

View File

@@ -1,4 +1,4 @@
#include "choosetableform.h"
#include "ChooseTableForm.h"
/*
* Constructs a chooseTableForm as a child of 'parent', with the

View File

@@ -1,4 +1,4 @@
#include "createindexform.h"
#include "CreateIndexForm.h"
#include <QMessageBox>
/*
* Constructs a createIndexForm as a child of 'parent', with the

View File

@@ -1,4 +1,4 @@
#include "deleteindexform.h"
#include "DeleteIndexForm.h"
#include <QMessageBox>
/*
* Constructs a deleteIndexForm as a child of 'parent', with the

View File

@@ -1,4 +1,4 @@
#include "deletetableform.h"
#include "DeleteTableForm.h"
#include <QMessageBox>
/*

View File

@@ -1,5 +1,5 @@
#include "dialogabout.h"
#include "ui_dialogabout.h"
#include "DialogAbout.h"
#include "ui_DialogAbout.h"
#include "sqlite_source/sqlite3.h"
DialogAbout::DialogAbout(QWidget *parent) :

View File

@@ -1,5 +1,5 @@
#include "editfieldform.h"
#include "ui_editfieldform.h"
#include "EditFieldForm.h"
#include "ui_EditFieldForm.h"
#include "sqlitedb.h"
#include <QPushButton>

View File

@@ -1,4 +1,4 @@
#include "editform.h"
#include "EditForm.h"
#include <QTextStream>
#include <QMessageBox>
#include <QFileDialog>

View File

@@ -1,6 +1,6 @@
#include "edittableform.h"
#include "ui_edittableform.h"
#include "editfieldform.h"
#include "EditTableForm.h"
#include "ui_EditTableForm.h"
#include "EditFieldForm.h"
#include <QMessageBox>
#include <QPushButton>
#include "sqlitedb.h"

View File

@@ -1,4 +1,4 @@
#include "exporttablecsvform.h"
#include "ExportTableCSVForm.h"
/*
* Constructs a exportTableCSVForm as a child of 'parent', with the

View File

@@ -1,4 +1,4 @@
#include "findform.h"
#include "FindForm.h"
/*
* Constructs a findForm as a child of 'parent', with the

View File

@@ -1,4 +1,4 @@
#include "importcsvform.h"
#include "ImportCSVForm.h"
#include <QMessageBox>
#include <QProgressDialog>
#include "sqlitedb.h"

View File

@@ -1,5 +1,5 @@
#include "mainwindow.h"
#include "ui_mainwindow.h"
#include "MainWindow.h"
#include "ui_MainWindow.h"
#include <QtGui/QFileDialog>
#include <QSettings>
#include <QFile>
@@ -11,20 +11,20 @@
#include <QStandardItemModel>
#include <QDragEnterEvent>
#include <QScrollBar>
#include "createindexform.h"
#include "deletetableform.h"
#include "deleteindexform.h"
#include "dialogabout.h"
#include "choosetableform.h"
#include "edittableform.h"
#include "editfieldform.h"
#include "importcsvform.h"
#include "exporttablecsvform.h"
#include "preferencesform.h"
#include "editform.h"
#include "findform.h"
#include "CreateIndexForm.h"
#include "DeleteIndexForm.h"
#include "DeleteTableForm.h"
#include "DialogAbout.h"
#include "ChooseTableForm.h"
#include "EditTableForm.h"
#include "EditFieldForm.h"
#include "ImportCSVForm.h"
#include "ExportTableCSVForm.h"
#include "PreferencesForm.h"
#include "EditForm.h"
#include "FindForm.h"
#include "SQLLogDock.h"
#include "sqlitesyntaxhighlighter.h"
#include "SQLiteSyntaxHighlighter.h"
void MainWindow::setupUi()
{

View File

@@ -1,5 +1,5 @@
#include "preferencesform.h"
#include "ui_preferencesform.h"
#include "PreferencesForm.h"
#include "ui_PreferencesForm.h"
#include <QDir>
#include <QSettings>
#include <QFileDialog>

View File

@@ -1,7 +1,7 @@
#include "SQLLogDock.h"
#include <QScrollBar>
#include "sqlitedb.h"
#include "sqlitesyntaxhighlighter.h"
#include "SQLiteSyntaxHighlighter.h"
/*
* Constructs a sqlLogForm as a child of 'parent', with the

View File

@@ -1,4 +1,4 @@
#include "sqlitesyntaxhighlighter.h"
#include "SQLiteSyntaxHighlighter.h"
SQLiteSyntaxHighlighter::SQLiteSyntaxHighlighter(QTextDocument *parent) :
QSyntaxHighlighter(parent)

View File

@@ -1,4 +1,4 @@
#include "mainwindow.h"
#include "MainWindow.h"
#include <QApplication>
#if defined(Q_WS_MAC)

View File

@@ -15,42 +15,42 @@ HEADERS += \
sqlitedb.h \
sqlbrowser_util.h \
sqlite_source/sqlite3.h \
choosetableform.h \
createindexform.h \
deleteindexform.h \
deletetableform.h \
editfieldform.h \
editform.h \
edittableform.h \
exporttablecsvform.h \
findform.h \
importcsvform.h \
preferencesform.h \
mainwindow.h \
SQLLogDock.h \
sqlitesyntaxhighlighter.h \
dialogabout.h
ChooseTableForm.h \
CreateIndexForm.h \
DeleteIndexForm.h \
DeleteTableForm.h \
DialogAbout.h \
EditFieldForm.h \
EditForm.h \
EditTableForm.h \
ExportTableCSVForm.h \
FindForm.h \
ImportCSVForm.h \
MainWindow.h \
PreferencesForm.h \
SQLiteSyntaxHighlighter.h
SOURCES += \
browsermain.cpp \
sqlitedb.cpp \
sqlbrowser_util.c \
sqlite_source/sqlite3.c \
choosetableform.cpp \
createindexform.cpp \
deleteindexform.cpp \
deletetableform.cpp \
editfieldform.cpp \
editform.cpp \
edittableform.cpp \
exporttablecsvform.cpp \
findform.cpp \
importcsvform.cpp \
preferencesform.cpp \
mainwindow.cpp \
SQLLogDock.cpp \
sqlitesyntaxhighlighter.cpp \
dialogabout.cpp
main.cpp \
ChooseTableForm.cpp \
CreateIndexForm.cpp \
DeleteIndexForm.cpp \
DeleteTableForm.cpp \
DialogAbout.cpp \
EditFieldForm.cpp \
EditForm.cpp \
EditTableForm.cpp \
ExportTableCSVForm.cpp \
FindForm.cpp \
ImportCSVForm.cpp \
MainWindow.cpp \
PreferencesForm.cpp \
SQLiteSyntaxHighlighter.cpp
QMAKE_CXXFLAGS += -DAPP_VERSION=\\\"`cd $$PWD;git log -n1 --format=%h_git`\\\"
@@ -72,8 +72,8 @@ mac {
RESOURCES += icons/icons.qrc
FORMS += \
dialogabout.ui \
preferencesform.ui \
mainwindow.ui \
editfieldform.ui \
edittableform.ui
DialogAbout.ui \
EditFieldForm.ui \
EditTableForm.ui \
MainWindow.ui \
PreferencesForm.ui