mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
minor changes
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2968 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
c78d07c746
commit
80ac2a43a4
@ -1,3 +1,11 @@
|
||||
2001-11-06 John Levon <moz@compsoc.man.ac.uk>
|
||||
|
||||
* Makefile.am: link in new DropDown.lo
|
||||
|
||||
* QSpellcheckerDialog.C: fix warning
|
||||
|
||||
* ui/moc/Makefile.am: remove dead thing
|
||||
|
||||
2001-10-17 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
|
||||
|
||||
* ui/moc/Makefile.am: remove unportable # at beginning of
|
||||
|
@ -21,6 +21,7 @@ libqt2_la_LIBADD = \
|
||||
../controllers/ButtonControllerBase.lo \
|
||||
../xforms/combox.lo \
|
||||
../xforms/Color.lo \
|
||||
../xforms/DropDown.lo \
|
||||
../xforms/FormBaseDeprecated.lo \
|
||||
../xforms/FormBrowser.lo \
|
||||
../xforms/FormDocument.lo \
|
||||
|
@ -43,7 +43,7 @@ void QSpellcheckerDialog:: replaceChanged(const QString & str)
|
||||
if (suggestionsLB->currentText() == str)
|
||||
return;
|
||||
|
||||
int i = 0;
|
||||
unsigned int i = 0;
|
||||
for (; i < suggestionsLB->count(); ++i) {
|
||||
if (suggestionsLB->text(i) == str)
|
||||
break;
|
||||
|
@ -13,8 +13,7 @@ AM_CXXFLAGS = -DQT_CLEAN_NAMESPACE -DQT_GENUINE_STR
|
||||
include ../../Makefile.dialogs
|
||||
|
||||
libqt2uimoc_la_SOURCES := $(UIMOCDIALOGS)
|
||||
# $(patsubst, %, %Dialog_moc.C, $(DIALOGS))
|
||||
|
||||
|
||||
DISTCLEANFILES = $(libqt2uimoc_la_SOURCES) *.orig *.rej *~ *.bak core
|
||||
|
||||
ETAGS_ARGS = --lang=c++
|
||||
|
Loading…
Reference in New Issue
Block a user