Skip to content

Commit 43b9656

Browse files
committed
Minor Change
1 parent d54df04 commit 43b9656

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

PyRunResources.qrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<RCC>
22
<qresource prefix="/data">
3-
<file>startme.py</file>
43
<file>Icons/Clear.png</file>
54
<file>Icons/Open.png</file>
65
<file>Icons/Save.png</file>
@@ -10,5 +9,6 @@
109
<file>Icons/Load.png</file>
1110
<file>Icons/Remove.png</file>
1211
<file>Icons/PyRunImg.png</file>
12+
<file>startme.py</file>
1313
</qresource>
1414
</RCC>

UI/mainview.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#ifndef MAINVIEW_H
22
#define MAINVIEW_H
3-
#define APP_NAME "PyRun Tester"
3+
#define APP_NAME "Express Python"
44

55
#include <cmath>
66
#include "Python.h"

UI/mainview.ui

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
</rect>
1212
</property>
1313
<property name="windowTitle">
14-
<string>PyRun Tester</string>
14+
<string>Express Python</string>
1515
</property>
1616
<property name="windowIcon">
1717
<iconset resource="../PyRunResources.qrc">

main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ static MainView* mainView;
99
int main(int argc, char* argv[])
1010
{
1111
QApplication app(argc, argv);
12-
wchar_t c_s[] = L"PyRun";
12+
wchar_t c_s[] = L"expressPython";
1313
Py_SetProgramName(c_s);
1414
snip = new Snippets();
1515
mainView = new MainView();

0 commit comments

Comments
 (0)