angus' patch

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3437 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
John Levon 2002-01-25 19:34:22 +00:00
parent aa4b2e082b
commit ae102d4793
5 changed files with 16 additions and 2 deletions

View File

@ -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:

View File

@ -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"

View File

@ -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_;

View File

@ -25,6 +25,8 @@
#include <qpushbutton.h>
#include <qcheckbox.h>
using std::vector;
typedef Qt2CB<ControlTexinfo, Qt2DB<QTexinfoDialog> > base_class;
QTexinfo::QTexinfo(ControlTexinfo & c)

View File

@ -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;