mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
angus' patch
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3437 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
aa4b2e082b
commit
ae102d4793
@ -1,3 +1,13 @@
|
||||
2002-01-25 Angus Leeming <a.leeming@ic.ac.uk>
|
||||
|
||||
* Dialogs.C: removed now redundant #include "QParagraph.h".
|
||||
|
||||
* QSearchDialog.h (remember): removed unnecessary
|
||||
QSearchDialog qualifier.
|
||||
|
||||
* QTexinfo.C:
|
||||
* QToc.C: added various using std::xyz directives.
|
||||
|
||||
2002-01-25 Edwin Leuven <leuven@fee.uva.nl>
|
||||
|
||||
* Makefile.am:
|
||||
|
@ -52,7 +52,6 @@
|
||||
#include "QIndex.h"
|
||||
#include "QLog.h"
|
||||
#include "QMinipage.h"
|
||||
#include "QParagraph.h"
|
||||
#include "QPreamble.h"
|
||||
#include "QPrint.h"
|
||||
#include "QRef.h"
|
||||
|
@ -34,7 +34,7 @@ protected:
|
||||
|
||||
private:
|
||||
// add a string to the combo if needed
|
||||
void QSearchDialog::remember(string const & find, QComboBox & combo);
|
||||
void remember(string const & find, QComboBox & combo);
|
||||
|
||||
QSearch * form_;
|
||||
|
||||
|
@ -25,6 +25,8 @@
|
||||
#include <qpushbutton.h>
|
||||
#include <qcheckbox.h>
|
||||
|
||||
using std::vector;
|
||||
|
||||
typedef Qt2CB<ControlTexinfo, Qt2DB<QTexinfoDialog> > base_class;
|
||||
|
||||
QTexinfo::QTexinfo(ControlTexinfo & c)
|
||||
|
@ -28,6 +28,9 @@
|
||||
|
||||
#include "QtLyXView.h"
|
||||
|
||||
using std::endl;
|
||||
using std::pair;
|
||||
using std::stack;
|
||||
using std::vector;
|
||||
|
||||
typedef Qt2CB<ControlToc, Qt2DB<QTocDialog> > base_class;
|
||||
|
Loading…
Reference in New Issue
Block a user