Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 577b058

Browse files
committed
Update to version 0.51.
1 parent f1bfc52 commit 577b058

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

src/bin/pgaccess/README

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
2323

2424

2525

26-
PGACCESS 0.5 , 3 October 1997
26+
PGACCESS 0.51 , 3 October 1997
2727
================================
2828
I dedicate this program to my little 4 year daughter Ana-Maria and my wife
2929
for their understanding. I hope they will forgive me for spending so many

src/bin/pgaccess/pgaccess.tcl

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1367,7 +1367,7 @@ for {set i 0} {$i<$nrecs} {incr i} {
13671367
set posx 10
13681368
for {set j 0} {$j<$colcount} {incr j} {
13691369
set fldtext [lindex $curtup [expr $j+$shift]]
1370-
if {$fldtext==""} {set fldtext " "};
1370+
if {[string length $fldtext]==0} {set fldtext " "};
13711371
.mw.c create text $posx [expr 30+$i*14] -text $fldtext -tags [subst {$tagoid c$j rows}] -anchor w -font $tvfont
13721372
incr posx [expr [lindex $colwidth $j]+2]
13731373
}
@@ -2327,7 +2327,7 @@ Window hide .qb} \
23272327
ql_draw_lizzard
23282328
focus .ql.entt} \
23292329
-font -Adobe-Helvetica-Medium-R-Normal-*-*-120-*-*-*-*-* -padx 9 \
2330-
-pady 3 -text {Query lizzard :-)}
2330+
-pady 3 -text {Visual designer}
23312331
###################
23322332
# SETTING GEOMETRY
23332333
###################
@@ -2367,7 +2367,7 @@ proc vTclWindow.ql {base} {
23672367
wm minsize $base 1 1
23682368
wm overrideredirect $base 0
23692369
wm resizable $base 1 1
2370-
wm title $base "Query lizzard"
2370+
wm title $base "Visual query designer"
23712371
bind $base <B1-Motion> {
23722372
ql_pan %x %y
23732373
}
@@ -2620,4 +2620,3 @@ Window show .
26202620
Window show .dw
26212621

26222622
main $argc $argv
2623-

0 commit comments

Comments
 (0)