From ee89a6e45e29b3a0e00b1e31f36112949bf75107 Mon Sep 17 00:00:00 2001 From: Abdelrazak Younes Date: Thu, 19 Oct 2006 10:32:38 +0000 Subject: [PATCH] Just cosmetics and remove a FIXME. Now, lyx is really ready for multiple LyXView. Just need to create an LFUN for it. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@15370 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/frontends/Application.C | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/src/frontends/Application.C b/src/frontends/Application.C index b8ac7c26a7..a7189c22a7 100644 --- a/src/frontends/Application.C +++ b/src/frontends/Application.C @@ -42,6 +42,11 @@ namespace frontend { Application::Application(int &, char **) { + // FIXME: please confirm: with unicode, I think initEncoding() + // is not needed anymore! + + // this can't be done before because it needs the Languages object + //initEncodings(); } @@ -56,20 +61,12 @@ LyXView & Application::createView(unsigned int width, int posx, int posy, bool maximize) { - // FIXME: please confirm: with unicode, I think initEncoding() - // is not needed anymore! - - // this can't be done before because it needs the Languages object - //initEncodings(); - int view_id = gui().newView(); LyXView & view = gui().view(view_id); theLyXFunc().setLyXView(&view); - // FIXME: for now we assume that there is only one LyXView with id = 0. - /*int workArea_id_ =*/ gui().newWorkArea(width, height, 0); - //WorkArea * workArea_ = & theApp->gui().workArea(workArea_id_); + /*int workArea_id_ =*/ gui().newWorkArea(width, height, view_id); view.init(); view.setGeometry(width, height, posx, posy, maximize);