Custom Query (95 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (4 - 6 of 95)

1 2 3 4 5 6 7 8 9 10 11 12
Ticket Owner Reporter Resolution Summary
#31 Olly Betts Becka Lawson duplicate Printing surface legs
Description

These seem to print reversed so they don't fit with the underground legs (Julian said this is something to do with the difference between what Survex and what the printer takes as the page origin).

#37 Olly Betts rowena1234 fixed aven in 1.2.6 fails on windows 7 with libgcc_sjli-1.dll missing
#41 Olly Betts Wookey fixed small fix needed to build against wx2.9
Description

building against wx2.9 (on debian testing=wheezy) fails in namecompare.cc:

LL -DWXGTK -pthread -Wall -Wunused -Wshadow -Wpointer-arith -Wwrite-strings -Wcast-align -g -O2 -c -o aven-namecompare.o test -f 'namecompare.cc' || echo './'namecompare.cc namecompare.cc: In function ‘int name_cmp(const wxString&, const wxString&, int)’: namecompare.cc:33:41: error: operands to ?: have different types ‘int’ and ‘wxUniChar’ namecompare.cc:34:41: error: operands to ?: have different types ‘int’ and ‘wxUniChar’

This simple patch fixes it: Index: survex-1.2.6/src/namecompare.cc =================================================================== --- survex-1.2.6.orig/src/namecompare.cc 2013-04-09 01:30:08.000000000 +0100 +++ survex-1.2.6/src/namecompare.cc 2013-04-09 01:31:39.844104393 +0100 @@ -30,8 +30,8 @@

int name_cmp(const wxString &a, const wxString &b, int separator) {

size_t i = 0; while (1) {

  • int cha = (i == a.size() ? 0 : a[i]);
  • int chb = (i == b.size() ? 0 : b[i]);

+ int cha = (i == a.size() ? 0 : (int) a[i]); + int chb = (i == b.size() ? 0 : (int) b[i]);

/* done if end of either string */

if (!cha
!chb) return cha - chb;

It may be that there is a better fix but this does the basic job.

1 2 3 4 5 6 7 8 9 10 11 12
Note: See TracQuery for help on using queries.