Skip to content

Commit 737ca1a

Browse files
committed
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.
1 parent 653b5f3 commit 737ca1a

3 files changed

Lines changed: 2 additions & 2 deletions

File tree

gui/FileList.cpp renamed to gui/filelist.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
#include <QDir>
2020
#include <QFileInfo>
2121
#include <QDebug>
22-
#include "FileList.h"
22+
#include "filelist.h"
2323

2424
QStringList FileList::GetDefaultFilters()
2525
{
File renamed without changes.

gui/mainwindow.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
#include "project.h"
3535
#include "report.h"
3636
#include "logview.h"
37-
#include "FileList.h"
37+
#include "filelist.h"
3838

3939
// HTMLHelp is only available in Windows
4040
#ifdef WIN32

0 commit comments

Comments
 (0)