Custom Query (95 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (34 - 36 of 95)

2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
Ticket Resolution Summary Owner Reporter
#39 fixed Aven won't come out of full-screen mode on Mac OsX Olly Betts Kevin Moore
Description

Environment: Mac OsX 10.8.2, Macbook Pro 13" retina version

Using Aven I made the mistake of entering full-screen mode. For most apps, the menu bar appears when you mouse to the top of the screen. Not so in Aven. The usual shift-command-F doesn't get me out of full-screen mode. Nor does quitting the application and re-starting it: it now restarts in full-screen mode.

I can't give the version number, as the bug prevents me from accessing the menus. It's the current MacOSX download (as of 30 Oct 2113).

#41 fixed small fix needed to build against wx2.9 Olly Betts Wookey
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.

#42 duplicate 3dformat documentation not readable online Olly Betts Wookey
Description

The release contains 3dformat.htm, but whilst the main manual is made available to read online at http://survex.com/docs.html the 3dformat doc does not appear to be, which means you can't easily send someone a URL pointing to the docs. People would be a lot more likely to find the docs if they were discoverable in this way.

2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
Note: See TracQuery for help on using queries.