mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 01:59:02 +00:00
small fixes and po file update
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1151 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
0464bef7be
commit
99083f35de
@ -1,3 +1,12 @@
|
||||
2000-10-24 Lars Gullik Bjønnes <larsbj@lyx.org>
|
||||
|
||||
* src/frontends/xforms/FormTabularCreate.C: add missing #pragma
|
||||
implementation
|
||||
|
||||
* src/frontends/xforms/FormError.C (disconnect): use erase() to
|
||||
make the message_ empty.
|
||||
(FormError): don't initialize message_ in initializer list.
|
||||
|
||||
2000-10-24 Angus Leeming <a.leeming@ic.ac.uk>
|
||||
|
||||
* src/frontends/xforms/FormInset.[Ch]: Aieeeeee! Ok, I'm an idiot.
|
||||
|
@ -1,3 +1,10 @@
|
||||
2000-10-24 Lars Gullik Bjønnes <larsbj@lyx.org>
|
||||
|
||||
* Makefile.in.in (ext_l10n.h): fix a bug in the generation that
|
||||
could lead to _("") + some simplification
|
||||
|
||||
* all po files updated again
|
||||
|
||||
2000-10-24 Lars Gullik Bjønnes <larsbj@lyx.org>
|
||||
|
||||
* all po files updated to latest lyx.pot
|
||||
|
@ -110,11 +110,11 @@ $(srcdir)/stamp-cat-id: $(PACKAGE).pot
|
||||
cd $(srcdir) && rm -f stamp-cat-id && echo timestamp > stamp-cat-id
|
||||
|
||||
$(top_srcdir)/src/ext_l10n.h: $(top_srcdir)/lib/layouts/*.layout $(top_srcdir)/lib/layouts/*.inc $(top_srcdir)/lib/ui/default.ui $(top_srcdir)/lib/languages
|
||||
grep -i -E "submenu|item|optitem" < $(top_srcdir)/lib/ui/default.ui | cut -d '"' -f 2 | \
|
||||
awk '{printf "_(\"%s\");\n", $$0}' > $@
|
||||
cat $(top_srcdir)/lib/layouts/*.layout $(top_srcdir)/lib/layouts/*.inc | grep -i -E "[ ]*style .+$$" | \
|
||||
cut -d ' ' -f 2 | sort | uniq | awk '{printf "_(\"%s\");\n", $$0}' >> $@
|
||||
awk -F '"' '$$2 {printf "_(\"%s\");\n", $$2}' < $(top_srcdir)/lib/languages >> $@
|
||||
grep -i -E "submenu|item|optitem" $(top_srcdir)/lib/ui/default.ui | cut -d '"' -f 2 | \
|
||||
awk '$$0 {printf "_(\"%s\");\n", $$0}' > $@
|
||||
grep -i -E "[ ]*style .+$$" $(top_srcdir)/lib/layouts/*.layout $(top_srcdir)/lib/layouts/*.inc | \
|
||||
cut -d ' ' -f 2 | sort | uniq | awk '$$0 {printf "_(\"%s\");\n", $$0}' >> $@
|
||||
awk -F '"' '$$2 {printf "_(\"%s\");\n", $$2}' $(top_srcdir)/lib/languages >> $@
|
||||
|
||||
install: install-exec install-data
|
||||
install-exec:
|
||||
|
@ -22,7 +22,7 @@
|
||||
|
||||
FormError::FormError( LyXView * lv, Dialogs * d )
|
||||
: FormInset( lv, d, _("LaTeX Error") ),
|
||||
dialog_(0), inset_(0), message_("")
|
||||
dialog_(0), inset_(0)
|
||||
{
|
||||
// let the dialog be shown
|
||||
// This is a permanent connection so we won't bother
|
||||
@ -47,7 +47,7 @@ FL_FORM * FormError::form() const
|
||||
void FormError::disconnect()
|
||||
{
|
||||
inset_ = 0;
|
||||
message_.empty();
|
||||
message_.erase();
|
||||
FormInset::disconnect();
|
||||
}
|
||||
|
||||
|
@ -14,6 +14,10 @@
|
||||
|
||||
#include <config.h>
|
||||
|
||||
#ifdef __GNUG__
|
||||
#pragma implementation
|
||||
#endif
|
||||
|
||||
#include "FormTabularCreate.h"
|
||||
#include "form_tabular_create.h"
|
||||
#include "BufferView.h"
|
||||
@ -21,7 +25,6 @@
|
||||
#include "LyXView.h"
|
||||
#include "insets/insettabular.h"
|
||||
|
||||
|
||||
FormTabularCreate::FormTabularCreate(LyXView * lv, Dialogs * d)
|
||||
: FormBaseBD(lv, d, _("Insert Tabular")),
|
||||
dialog_(0)
|
||||
|
Loading…
Reference in New Issue
Block a user