Skip to content

Commit d0f69e3

Browse files
committed
Merging the upstream changes that made in web.
2 parents a19549e + f2d643b commit d0f69e3

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed
Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import os
22
from delphifmx import *
3-
from child_window import Child_Form
43

54
class Parent_Form(Form):
65

@@ -10,8 +9,6 @@ def __init__(self, owner):
109
self.enter_text_label = None
1110
self.main_heading = None
1211
self.LoadProps(os.path.join(os.path.dirname(os.path.abspath(__file__)), "parent_window.pyfmx"))
13-
self.child_form = Child_Form(self)
1412

1513
def my_buttonClick(self, Sender):
16-
self.child_form.result_text_label.Text = self.enter_text_edit.Text
17-
self.child_form.show()
14+
pass

0 commit comments

Comments
 (0)