Project

General

Profile

3075_3.txt

Sergey Ivanovskiy, 05/13/2016 07:29 AM

Download (2.81 KB)

 
1
=== modified file 'src/com/goldencode/p2j/ui/client/gui/ComboBoxGuiImpl.java'
2
--- src/com/goldencode/p2j/ui/client/gui/ComboBoxGuiImpl.java	2016-05-13 01:45:52 +0000
3
+++ src/com/goldencode/p2j/ui/client/gui/ComboBoxGuiImpl.java	2016-05-13 09:20:10 +0000
4
@@ -1306,7 +1306,7 @@
5
    private void createSimpleList()
6
    {
7
       // create the drop-down box
8
-      // The direct cast is save due to the create factory method returns instances of this type
9
+      // The direct cast is safe due to the create factory method returns instances of this type
10
       simpleList = (ScrollableSelectionListGuiImpl) screen().getFactory().createScrollableList(
11
                this, this.model());
12
 
13

    
14
=== modified file 'src/com/goldencode/p2j/ui/client/gui/driver/web/GuiWebSocket.java'
15
--- src/com/goldencode/p2j/ui/client/gui/driver/web/GuiWebSocket.java	2016-05-13 01:45:52 +0000
16
+++ src/com/goldencode/p2j/ui/client/gui/driver/web/GuiWebSocket.java	2016-05-13 10:02:27 +0000
17
@@ -156,7 +156,9 @@
18
    /** This stack will contain the drawing operation recordings. */
19
    private Deque<DrawRecording> recordings = new ArrayDeque<>();
20
    
21
+   /** The true value indicates that batches of drawing commands are cached.*/
22
    private boolean graphicsCached;
23
+   
24
    /**
25
     * Create a new GUI web socket instance.
26
     * 
27
@@ -173,8 +175,11 @@
28
     * @param    graphicsCached
29
     *           True if the drawing batches are cached, otherwise false.
30
     */
31
-   public GuiWebSocket(Object lock, ClientProtocolHooks callbacks, long timeout, long wdtimeout,
32
-            boolean graphicsCached)
33
+   public GuiWebSocket(Object              lock,
34
+                       ClientProtocolHooks callbacks,
35
+                       long                timeout,
36
+                       long                wdtimeout,
37
+                       boolean             graphicsCached)
38
    {
39
       super(lock, callbacks, timeout, wdtimeout);
40
       
41

    
42
=== modified file 'src/com/goldencode/p2j/ui/client/gui/driver/web/res/p2j.screen.js'
43
--- src/com/goldencode/p2j/ui/client/gui/driver/web/res/p2j.screen.js	2016-05-13 01:45:52 +0000
44
+++ src/com/goldencode/p2j/ui/client/gui/driver/web/res/p2j.screen.js	2016-05-13 09:45:02 +0000
45
@@ -48,7 +48,7 @@
46
 ** 012 SBI 20160414 Fixed  doWindowActivationChange(...) and activateTopVisibleWindow(...).
47
 **     SBI 20160422 The resize drawing operations must not be cached.
48
 ** 013 SBI 20160427 Added graphicsCached parameter to turn off the graphics cache for testing.
49
-** 014 SBI 20160505 Fixed canProcessWidget to return false if the event has been prevented by
50
+**     SBI 20160505 Fixed canProcessWidget to return false if the event has been prevented by
51
 **                  some mouse handler.
52
 **     SBI 20160506 Fixed to send the current window changes its minimized state.
53
 **     SBI 20160512 Fixed the web combobox entry and drop down list items to be aligned within
54