mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
Forgot the Qt part in the tostr() patch.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6957 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
0e9bd2e87d
commit
e17caef19e
@ -1,3 +1,14 @@
|
||||
|
||||
2003-05-13 André Pönitz <poenitz@lyx.org>
|
||||
|
||||
* Document.C:
|
||||
* QGraphics.C:
|
||||
* QTabular.C:
|
||||
* QPref.C:
|
||||
* QTabular.C:
|
||||
* QWrap.C:
|
||||
* QMinipage.C: tostr() has a header of its own now
|
||||
|
||||
2003-05-08 Lars Gullik Bjønnes <larsbj@gullik.net>
|
||||
|
||||
* ui/moc/Makefile.am: better lib building
|
||||
|
@ -10,7 +10,6 @@
|
||||
|
||||
#include <config.h>
|
||||
|
||||
|
||||
#include "qt_helpers.h"
|
||||
|
||||
#include "ControlDocument.h"
|
||||
@ -24,7 +23,7 @@
|
||||
#include "frnt_lang.h"
|
||||
#include "lyxrc.h" // defaultUnit
|
||||
#include "tex-strings.h" // tex_graphics
|
||||
#include "support/lstrings.h" // tostr()
|
||||
#include "support/tostr.h"
|
||||
#include "support/filetools.h" // LibFileSearch()
|
||||
#include "support/BoostFormat.h"
|
||||
#include "lyxtextclasslist.h"
|
||||
|
@ -12,11 +12,11 @@
|
||||
|
||||
#include <config.h>
|
||||
|
||||
|
||||
#include "QtLyXView.h"
|
||||
#include "ControlGraphics.h"
|
||||
#include "controllers/helper_funcs.h"
|
||||
#include "support/lstrings.h"
|
||||
#include "support/tostr.h"
|
||||
#include "support/FileInfo.h"
|
||||
#include "support/filetools.h"
|
||||
#include "insets/insetgraphicsParams.h"
|
||||
|
@ -10,10 +10,10 @@
|
||||
|
||||
#include <config.h>
|
||||
|
||||
|
||||
#include "qt_helpers.h"
|
||||
|
||||
#include "support/lstrings.h"
|
||||
#include "Lsstream.h"
|
||||
|
||||
#include "QMath.h"
|
||||
#include "QMathMatrixDialog.h"
|
||||
@ -36,7 +36,7 @@ QMathMatrixDialog::QMathMatrixDialog(QMath * form)
|
||||
{
|
||||
setCaption(qt_("LyX: Insert Matrix"));
|
||||
|
||||
table->setMinimumSize(100,100);
|
||||
table->setMinimumSize(100, 100);
|
||||
rowsSB->setValue(2);
|
||||
columnsSB->setValue(2);
|
||||
valignCO->setCurrentItem(1);
|
||||
|
@ -10,9 +10,9 @@
|
||||
|
||||
#include <config.h>
|
||||
|
||||
|
||||
#include "debug.h"
|
||||
#include "qt_helpers.h"
|
||||
#include "support/tostr.h"
|
||||
#include "support/lstrings.h"
|
||||
#include "LyXView.h"
|
||||
#include "ControlMinipage.h"
|
||||
|
@ -10,7 +10,6 @@
|
||||
|
||||
#include <config.h>
|
||||
|
||||
|
||||
#include "ControlParagraph.h"
|
||||
#include "QParagraph.h"
|
||||
#include "QParagraphDialog.h"
|
||||
@ -24,6 +23,7 @@
|
||||
#include "vspace.h"
|
||||
|
||||
#include "support/lstrings.h"
|
||||
#include "support/tostr.h"
|
||||
#include "support/LAssert.h"
|
||||
|
||||
#include <qcombobox.h>
|
||||
@ -258,9 +258,7 @@ void setWidgetsFromVSpace(VSpace const & space,
|
||||
LyXLength len(length);
|
||||
if ((isValidLength(length)
|
||||
|| isStrDbl(length)) && !len.zero()) {
|
||||
ostringstream buffer;
|
||||
buffer << len.value();
|
||||
length = buffer.str();
|
||||
length = tostr(len.value());
|
||||
supplied_unit = subst(stringFromUnit(len.unit()),
|
||||
"%", "%%");
|
||||
}
|
||||
|
@ -11,6 +11,7 @@
|
||||
#include <config.h>
|
||||
|
||||
#include "support/lstrings.h"
|
||||
#include "support/tostr.h"
|
||||
#include "Lsstream.h"
|
||||
#include <iomanip>
|
||||
|
||||
|
@ -12,11 +12,11 @@
|
||||
|
||||
#include <config.h>
|
||||
|
||||
|
||||
#include "ControlTabular.h"
|
||||
#include "insets/insettabular.h"
|
||||
#include "qt_helpers.h"
|
||||
#include "support/lstrings.h"
|
||||
#include "support/tostr.h"
|
||||
#include "lyxrc.h"
|
||||
|
||||
#include "QTabularDialog.h"
|
||||
|
@ -12,6 +12,7 @@
|
||||
|
||||
#include "debug.h"
|
||||
#include "qt_helpers.h"
|
||||
#include "support/tostr.h"
|
||||
#include "support/lstrings.h"
|
||||
#include "LyXView.h"
|
||||
#include "ControlWrap.h"
|
||||
|
@ -10,8 +10,7 @@
|
||||
|
||||
#include <config.h>
|
||||
|
||||
|
||||
#include "support/lstrings.h"
|
||||
#include "support/tostr.h"
|
||||
#include "gettext.h"
|
||||
#include "qt_helpers.h"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user