From: Abdelrazak Younes Date: Fri, 6 Jun 2008 22:30:30 +0000 (+0000) Subject: X-Ref dialog: Hide the buffer combo now that child document labels are integrated... X-Git-Tag: 1.6.10~4467 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=87cbf97c9196c93781caa0cb1111d8d279bc1dd6;p=features.git X-Ref dialog: Hide the buffer combo now that child document labels are integrated within the parent's. This should be re-enables if/when the xr package is supported. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@25174 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/frontends/qt4/GuiRef.cpp b/src/frontends/qt4/GuiRef.cpp index c7770453d6..bb8db36b33 100644 --- a/src/frontends/qt4/GuiRef.cpp +++ b/src/frontends/qt4/GuiRef.cpp @@ -47,6 +47,13 @@ GuiRef::GuiRef(GuiView & lv) sort_ = false; at_ref_ = false; + //FIXME: when/if we support the xr package for cross-reference + //between independant files. Those can be re-enabled. + refsL->setEnabled(false); + refsL->hide(); + bufferCO->setEnabled(false); + bufferCO->hide(); + connect(okPB, SIGNAL(clicked()), this, SLOT(slotOK())); connect(applyPB, SIGNAL(clicked()), this, SLOT(slotApply())); connect(closePB, SIGNAL(clicked()), this, SLOT(slotClose()));