The reference dialog now disconnects from the inset on Apply. Its behaviour

is now analogous to that of the citation dialog.


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2786 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Angus Leeming 2001-09-21 16:23:31 +00:00
parent a2ef5d11b3
commit a25d7f90ce
2 changed files with 10 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2001-09-21 Angus Leeming <a.leeming@ic.ac.uk>
* ControlReferences.h (disconnectOnApply): new method. Set to true.
Perhaps make this user-modifiable?
2001-09-14 Jürgen Spitzmüller <j.spitzmueller@gmx.de>
* ControlGraphics.C (Browse): add "jpg" to list of recognized file

View File

@ -38,6 +38,11 @@ public:
std::vector<string> const getBufferList() const;
///
int getBufferNum() const;
private:
/** disconnect from the inset when the Apply button is pressed.
Allows easy insertion of multiple references. */
virtual bool disconnectOnApply() { return true; }
};
#endif // CONTROLREF_H