File tree 1 file changed +16
-2
lines changed
1 file changed +16
-2
lines changed Original file line number Diff line number Diff line change @@ -32,6 +32,13 @@ object Main: TMain
32
32
Width = 753
33
33
Height = 249
34
34
Align = alTop
35
+ Font.Charset = DEFAULT_CHARSET
36
+ Font.Color = clWindowText
37
+ Font.Height = -13
38
+ Font.Name = ' Consolas'
39
+ Font.Pitch = fpVariable
40
+ Font.Style = []
41
+ ParentFont = False
35
42
ScrollBars = ssVertical
36
43
TabOrder = 0
37
44
end
@@ -234,6 +241,12 @@ object Main: TMain
234
241
Width = 753
235
242
Height = 166
236
243
Align = alClient
244
+ Font.Charset = DEFAULT_CHARSET
245
+ Font.Color = clWindowText
246
+ Font.Height = -13
247
+ Font.Name = ' Consolas'
248
+ Font.Pitch = fpVariable
249
+ Font.Style = []
237
250
Lines.Strings = (
238
251
' class XYZ(object):'
239
252
' pass'
@@ -242,7 +255,7 @@ object Main: TMain
242
255
' def __init__(Self, Value=0):'
243
256
' Self.Value = Value'
244
257
' def __del__(Self):'
245
- ' print "delete", Self'
258
+ ' print ( "delete", Self) '
246
259
' def __add__(self, other):'
247
260
' return Foo(self.Value + other.Value)'
248
261
' def Inc(Self, AValue = 1):'
@@ -266,12 +279,13 @@ object Main: TMain
266
279
' return [a, b, c, d]'
267
280
' '
268
281
' f = Foo()'
269
- ' print "Created", f'
282
+ ' print ( "Created", f) '
270
283
' f.Inc()'
271
284
' f.Inc(2)'
272
285
' b = Bar()'
273
286
' b.Inc()'
274
287
' b.Inc(2)' )
288
+ ParentFont = False
275
289
ScrollBars = ssVertical
276
290
TabOrder = 2
277
291
end
You can’t perform that action at this time.
0 commit comments