Fix filenames starting with capital letters.

I accidentally committed two new files with filenames starting
with capital letters from Windows machine. The Linux build
breakage was fixed by fixing the include lines. But the correct
fix is to fix filenames as we are using all lower letter filenames
in this project.
This commit is contained in:
Kimmo Varis 2010-08-11 17:22:39 +03:00
parent 653b5f37b8
commit 737ca1a968
3 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,7 @@
#include <QDir>
#include <QFileInfo>
#include <QDebug>
#include "FileList.h"
#include "filelist.h"
QStringList FileList::GetDefaultFilters()
{

View File

@ -34,7 +34,7 @@
#include "project.h"
#include "report.h"
#include "logview.h"
#include "FileList.h"
#include "filelist.h"
// HTMLHelp is only available in Windows
#ifdef WIN32