From: Abdelrazak Younes Date: Sat, 20 Jan 2007 08:43:51 +0000 (+0000) Subject: Fix typo. X-Git-Tag: 1.6.10~11127 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=240086a1de615448d7726c996431cdb9b646a241;p=features.git Fix typo. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@16775 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/metricsinfo.h b/src/metricsinfo.h index 8986c97b43..733bccd3f2 100644 --- a/src/metricsinfo.h +++ b/src/metricsinfo.h @@ -112,12 +112,12 @@ class ViewMetricsInfo public: ViewMetricsInfo() : p1(0), p2(0), y1(0), y2(0), - update_strategy(NoScreenUpdate), size(0) + update_strategy(FullScreenUpdate), size(0) {} ViewMetricsInfo(pit_type p1, pit_type p2, int y1, int y2, ScreenUpdateStrategy updatestrategy, pit_type size) : p1(p1), p2(p2), y1(y1), y2(y2), - update_strategy(update_strategy), size(size) + update_strategy(updatestrategy), size(size) {} pit_type p1;