Skip to content

Commit

Permalink
Fix align mac logo url
Browse files Browse the repository at this point in the history
  • Loading branch information
RussellGarwood committed Feb 11, 2020
1 parent 253df92 commit 82819a0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion SPIERSalign/SPIERSalign.pro
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ FORMS += ui/mainwindow.ui \
ui/about.ui

#Mac icon
ICON = resources/SPIERSalign.icns
ICON = resources/SPIERSalignIcon.icns

HEADERS += src/mainwindowimpl.h \
src/globals.h \
Expand Down
11 changes: 6 additions & 5 deletions SPIERSview/src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@
#include "../SPIERScommon/src/netmodule.h"
#include "../SPIERScommon/src/darkstyletheme.h"

#ifdef _WIN64
#include <windows.h>
#endif

/**
* @brief logMessageOutput
* @param type
Expand Down Expand Up @@ -49,11 +53,6 @@ void logMessageOutput(QtMsgType type, const QMessageLogContext &context, const Q
}

#ifndef __APPLE__

#ifdef _WIN64
#include <windows.h>
#endif

#ifdef QT_DEBUG
// Save to debug.log
QFile outFile("debug.log");
Expand All @@ -69,8 +68,10 @@ void logMessageOutput(QtMsgType type, const QMessageLogContext &context, const Q
QTextStream console(stdout);
console << txt << endl;
#endif
#endif
}

#ifndef __APPLE__
/**
* @brief qMain::qMain
* @param argc
Expand Down

0 comments on commit 82819a0

Please sign in to comment.