Skip to content

Commit a24c8c5

Browse files
authored
Merge pull request #72 from mvdw73/linux-sample-fix
Added shebang to top of sample scripts
2 parents 53a3dac + b66a088 commit a24c8c5

File tree

6 files changed

+7
-1
lines changed

6 files changed

+7
-1
lines changed

samples/ControlsDesktop/controlsdemo.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#!/usr/bin/env python3
12
#----------------------------------------------------------------------------------
23
# Name: CtrlsDemoFrm
34
# Purpose: More demonstration showing more controls, with more properties and

samples/HelloDelphiFMX.py

100644100755
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#!/usr/bin/env python3
12
#----------------------------------------------------------------
23
# Name: HelloDelphiFMX.py
34
# Purpose: Simple DelphiFMX for Python demonstration with OOP

samples/HiDPI/HelloHighDpi.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#!/usr/bin/env python3
12
#----------------------------------------------------------------
23
# Name: hello_highdpi.py
34
# Purpose: Test of High DPI Awareness
@@ -68,4 +69,4 @@ def main():
6869
Application.MainForm.Destroy()
6970

7071
if __name__ == '__main__':
71-
main()
72+
main()

samples/PasswordGenerator.py

100644100755
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#!/usr/bin/env python3
12
#----------------------------------------------------------------
23
# Name: PasswordGenerator.py
34
# Purpose: Password Generator built with DelphiFMX GUI Framework

samples/Simplest.py

100644100755
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#!/usr/bin/env python3
12
#-----------------------------------------------
23
# Name: Simplest.py
34
# Purpose: The simplest demo of Delphi FMX

samples/ToDoList.py

100644100755
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#!/usr/bin/env python3
12
#----------------------------------------------------------------
23
# Name: ToDoList.py
34
# Purpose: Simple ToDo List built with Delphi FMX

0 commit comments

Comments
 (0)