From 90d03f835179c407d32d046c060ec96606abdab1 Mon Sep 17 00:00:00 2001 From: James Crook Date: Sun, 19 Jul 2015 19:51:30 +0100 Subject: [PATCH] More deconsting to satisfy Travis const in struct not supported by Travis version of gcc. --- src/ViewInfo.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ViewInfo.h b/src/ViewInfo.h index 03040a64f..bba107215 100644 --- a/src/ViewInfo.h +++ b/src/ViewInfo.h @@ -85,7 +85,7 @@ public: void ZoomBy(double multiplier); struct Interval { - const wxInt64 position; const double averageZoom; const bool inFisheye; + /* const */ wxInt64 position; /* const */ double averageZoom; /* const */ bool inFisheye; Interval(wxInt64 p, double z, bool i) : position(p), averageZoom(z), inFisheye(i) {} };