Skip to content

Commit b58b776

Browse files
dbrnzsboehmann
authored andcommitted
Use quote characters around includes of our headers.
This prevents `file not found with <angled> include; use "quotes" instead` errors.
1 parent e4cb206 commit b58b776

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/PythonQtObjectPtr.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@
3939
*/
4040
//----------------------------------------------------------------------------------
4141

42-
#include <PythonQt.h>
4342

43+
#include "PythonQt.h"
4444
QVariant PythonQtObjectPtr::evalScript(const QString& script, int start)
4545
{
4646
return PythonQt::self()->evalScript(_object, script, start);

src/PythonQtQFileImporter.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
//----------------------------------------------------------------------------------
4444

4545
#include "PythonQtPythonInclude.h"
46-
#include <PythonQtImportFileInterface.h>
46+
#include "PythonQtImportFileInterface.h"
4747

4848
//! default importer implementation using QFile to load python code
4949
class PythonQtQFileImporter : public PythonQtImportFileInterface {

src/PythonQtThreadSupport.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@
4040
//----------------------------------------------------------------------------------
4141

4242

43-
#include <PythonQtPythonInclude.h>
44-
#include <PythonQtSystem.h>
43+
#include "PythonQtPythonInclude.h"
44+
#include "PythonQtSystem.h"
4545

4646
#define PYTHONQT_FULL_THREAD_SUPPORT
4747

0 commit comments

Comments
 (0)