SVN Commit by andreas: r4768 - in trunk/pgadmin3: . src/ctl src/include/images - Mailing list pgadmin-hackers

From svn@pgadmin.org
Subject SVN Commit by andreas: r4768 - in trunk/pgadmin3: . src/ctl src/include/images
Date
Msg-id 200511302227.jAUMR6sW020890@developer.pgadmin.org
Whole thread Raw
List pgadmin-hackers
Author: andreas
Date: 2005-11-30 22:27:05 +0000 (Wed, 30 Nov 2005)
New Revision: 4768

Modified:
   trunk/pgadmin3/CHANGELOG.txt
   trunk/pgadmin3/src/ctl/explainShape.cpp
   trunk/pgadmin3/src/include/images/ex_bmp_heap.xpm
   trunk/pgadmin3/src/include/images/ex_bmp_index.xpm
   trunk/pgadmin3/src/include/images/ex_index_scan.xpm
   trunk/pgadmin3/src/include/images/ex_scan.xpm
   trunk/pgadmin3/src/include/images/ex_tid_scan.xpm
Log:
Graphical explain: distinct scan images

Modified: trunk/pgadmin3/CHANGELOG.txt
===================================================================
--- trunk/pgadmin3/CHANGELOG.txt    2005-11-30 22:22:24 UTC (rev 4767)
+++ trunk/pgadmin3/CHANGELOG.txt    2005-11-30 22:27:05 UTC (rev 4768)
@@ -18,6 +18,7 @@
 </ul>
 <br>
 <ul>
+    <li>2005-11-30 AP         Graphical explain: distinct scan images
     <li>2005-11-25 DP  1.4.1  Fix the server status SQL query
     <li>2005-11-25 FGP 1.4.1  Don't include pgAgent in the Mac OSX bundle
     <li>2005-11-25 FGP 1.4.1  Include pg_dump/pg_restore in the Mac OSX bundle

Modified: trunk/pgadmin3/src/ctl/explainShape.cpp
===================================================================
--- trunk/pgadmin3/src/ctl/explainShape.cpp    2005-11-30 22:22:24 UTC (rev 4767)
+++ trunk/pgadmin3/src/ctl/explainShape.cpp    2005-11-30 22:27:05 UTC (rev 4768)
@@ -192,7 +192,7 @@
     }
     else if (token2 == wxT("Scan"))
     {
-        if (token == wxT("Index"))          s = new  ExplainShape(ex_index_scan_xpm, descr, 3, 2);
+        if (token == wxT("Index"))          s = new ExplainShape(ex_index_scan_xpm, descr, 3, 2);
         else if (token == wxT("Tid"))       s = new ExplainShape(ex_tid_scan_xpm, descr, 3, 2);
         else                                s = new ExplainShape(ex_scan_xpm, descr, 3, 2);
     }

Modified: trunk/pgadmin3/src/include/images/ex_bmp_heap.xpm
===================================================================
--- trunk/pgadmin3/src/include/images/ex_bmp_heap.xpm    2005-11-30 22:22:24 UTC (rev 4767)
+++ trunk/pgadmin3/src/include/images/ex_bmp_heap.xpm    2005-11-30 22:27:05 UTC (rev 4768)
@@ -1,5 +1,5 @@
 /* XPM */
-static char * ex_bitmapheapscan_xpm[] = {
+static char * ex_bmp_heap_xpm[] = {
 "50 50 128 2",
 "      c None",
 ".     c #FAE65F",

Modified: trunk/pgadmin3/src/include/images/ex_bmp_index.xpm
===================================================================
--- trunk/pgadmin3/src/include/images/ex_bmp_index.xpm    2005-11-30 22:22:24 UTC (rev 4767)
+++ trunk/pgadmin3/src/include/images/ex_bmp_index.xpm    2005-11-30 22:27:05 UTC (rev 4768)
@@ -1,5 +1,5 @@
 /* XPM */
-static char * ex_bitmapindexscan_xpm[] = {
+static char * ex_bmp_index_xpm[] = {
 "50 50 128 2",
 "      c None",
 ".     c #ECDDBA",

Modified: trunk/pgadmin3/src/include/images/ex_index_scan.xpm
===================================================================
--- trunk/pgadmin3/src/include/images/ex_index_scan.xpm    2005-11-30 22:22:24 UTC (rev 4767)
+++ trunk/pgadmin3/src/include/images/ex_index_scan.xpm    2005-11-30 22:27:05 UTC (rev 4768)
@@ -1,5 +1,5 @@
 /* XPM */
-static char * ex_indexscan_xpm[] = {
+static char * ex_index_scan_xpm[] = {
 "50 50 128 2",
 "      c None",
 ".     c #FFE65F",

Modified: trunk/pgadmin3/src/include/images/ex_scan.xpm
===================================================================
--- trunk/pgadmin3/src/include/images/ex_scan.xpm    2005-11-30 22:22:24 UTC (rev 4767)
+++ trunk/pgadmin3/src/include/images/ex_scan.xpm    2005-11-30 22:27:05 UTC (rev 4768)
@@ -1,5 +1,5 @@
 /* XPM */
-static char * ex_seqscan_xpm[] = {
+static char * ex_scan_xpm[] = {
 "50 50 128 2",
 "      c None",
 ".     c #D1E7F2",

Modified: trunk/pgadmin3/src/include/images/ex_tid_scan.xpm
===================================================================
--- trunk/pgadmin3/src/include/images/ex_tid_scan.xpm    2005-11-30 22:22:24 UTC (rev 4767)
+++ trunk/pgadmin3/src/include/images/ex_tid_scan.xpm    2005-11-30 22:27:05 UTC (rev 4768)
@@ -1,5 +1,5 @@
 /* XPM */
-static char * ex_tidscan_xpm[] = {
+static char * ex_tid_scan_xpm[] = {
 "50 50 128 2",
 "      c None",
 ".     c #EAEAEA",


pgadmin-hackers by date:

Previous
From: "Dave Page"
Date:
Subject: Re: FW: Explain graphical explain...
Next
From: Andreas Pflug
Date:
Subject: Re: pgadmin 1.4.1?