]> git.lyx.org Git - lyx.git/blobdiff - src/funcrequest.C
Fix bug 886 and others not reported related with the document paper size.
[lyx.git] / src / funcrequest.C
index 3286d9329d8cb4c7eea7564d8a0b4819b27521ae..6a9b3fd9a1605e1866b5d756b191265326fcb5c4 100644 (file)
@@ -24,7 +24,7 @@ using std::string;
 
 
 FuncRequest::FuncRequest(Origin o)
-       : action(LFUN_NOACTION), origin(o), x(0), y(0), 
+       : action(LFUN_NOACTION), origin(o), x(0), y(0),
          button_(mouse_button::none)
 {}
 
@@ -35,12 +35,12 @@ FuncRequest::FuncRequest(kb_action act, Origin o)
 
 
 FuncRequest::FuncRequest(kb_action act, string const & arg, Origin o)
-       : action(act), argument(arg), origin(o), x(0), y(0), 
+       : action(act), argument(arg), origin(o), x(0), y(0),
          button_(mouse_button::none)
 {}
 
 
-FuncRequest::FuncRequest(kb_action act, int ax, int ay, 
+FuncRequest::FuncRequest(kb_action act, int ax, int ay,
                         mouse_button::state but, Origin o)
        : action(act), origin(o), x(ax), y(ay), button_(but)
 {}