This commit is contained in:
Jean-Marc Lasgouttes 2012-06-05 12:22:13 +02:00
parent 8f01556236
commit 992eae2524
7 changed files with 8 additions and 8 deletions

View File

@ -10591,7 +10591,7 @@
* lib/reLyX/configure.in (LYX_DIR): re-introduce this variable * lib/reLyX/configure.in (LYX_DIR): re-introduce this variable
that I removed earlier... It is really needed. that I removed earlier... It is really needed.
* lib/examples/multicol.lyx: new file, splitted from Extended.lyx. * lib/examples/multicol.lyx: new file, split from Extended.lyx.
2000-01-25 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr> 2000-01-25 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
@ -11809,7 +11809,7 @@
* src/lyxfunc.C (Dispatch): added case for LFUN_SAVEPREFERENCES * src/lyxfunc.C (Dispatch): added case for LFUN_SAVEPREFERENCES
* src/layout.[hC] : LayoutTags splitted into several enums, new * src/layout.[hC] : LayoutTags split into several enums, new
methods created, better error handling cleaner use of lyxlex. Read methods created, better error handling cleaner use of lyxlex. Read
the diff. the diff.

View File

@ -6,7 +6,7 @@ changes should be needed for other platforms.
the qt-devel packages as well. the qt-devel packages as well.
2) Install LaTeX. You can do this using RPMs from your distribution that 2) Install LaTeX. You can do this using RPMs from your distribution that
might be splitted in multiple packages (e.g. texlive, texlive-latex), might be split in multiple packages (e.g. texlive, texlive-latex),
or you can install TeXLive straight from the DVD. or you can install TeXLive straight from the DVD.
3) Copy lyx.spec to the SPECS directory (on Redhat, this is located at 3) Copy lyx.spec to the SPECS directory (on Redhat, this is located at

View File

@ -272,7 +272,7 @@ private:
/// around the middle snake. /// around the middle snake.
void diff_i(DocRangePair const & rp); void diff_i(DocRangePair const & rp);
/// Processes the splitted chunks. It either adds them as deleted, /// Processes the split chunks. It either adds them as deleted,
/// as added, or call diff_i for further processing. /// as added, or call diff_i for further processing.
void diffPart(DocRangePair const & rp); void diffPart(DocRangePair const & rp);

View File

@ -143,7 +143,7 @@ void FontList::set(pos_type pos, Font const & font)
bool const end = found && list_[i].pos() == pos; bool const end = found && list_[i].pos() == pos;
if (!begin && !end) { if (!begin && !end) {
// The general case: The block is splitted into 3 blocks // The general case: The block is split into 3 blocks
list_.insert(list_.begin() + i, list_.insert(list_.begin() + i,
FontTable(pos - 1, list_[i].font())); FontTable(pos - 1, list_[i].font()));
list_.insert(list_.begin() + i + 1, list_.insert(list_.begin() + i + 1,

View File

@ -25,7 +25,7 @@ namespace lyx {
* \class Index * \class Index
* *
* A class describing an Index type, such as "Index of Names". * A class describing an Index type, such as "Index of Names".
* Different Index types are used in splitted Indices * Different Index types are used in split Indices
* *
* An Index has a name and a shortcut notation. It uses a * An Index has a name and a shortcut notation. It uses a
* user-specifiable GUI colour. All these can be set and * user-specifiable GUI colour. All these can be set and

View File

@ -293,7 +293,7 @@ bool LyXDataSocket::connected() const
// Returns true if there was a complete line to input // Returns true if there was a complete line to input
// A line is of the form <key>:<value> // A line is of the form <key>:<value>
// A line not of this form will not be passed // A line not of this form will not be passed
// The line read is splitted and stored in 'key' and 'value' // The line read is split and stored in 'key' and 'value'
bool LyXDataSocket::readln(string & line) bool LyXDataSocket::readln(string & line)
{ {
int const charbuf_size = 100; int const charbuf_size = 100;

View File

@ -2023,7 +2023,7 @@ private:
slot -= inner->slotuse+1; slot -= inner->slotuse+1;
inner = static_cast<inner_node*>(*splitnode); inner = static_cast<inner_node*>(*splitnode);
BTREE_PRINT("btree::insert_descend switching to splitted node " << inner << " slot " << slot <<std::endl); BTREE_PRINT("btree::insert_descend switching to split node " << inner << " slot " << slot <<std::endl);
} }
} }