mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-05 13:26:21 +00:00
Use InsetCode
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@20938 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
3fced79210
commit
f357fb955f
@ -1834,10 +1834,8 @@ void Buffer::buildMacros()
|
||||
|
||||
|
||||
void Buffer::changeRefsIfUnique(docstring const & from, docstring const & to,
|
||||
int inset_code)
|
||||
InsetCode code)
|
||||
{
|
||||
InsetCode code = static_cast<InsetCode>(inset_code);
|
||||
|
||||
//FIXME: This does not work for child documents yet.
|
||||
BOOST_ASSERT(code == CITE_CODE || code == REF_CODE);
|
||||
// Check if the label 'from' appears more than once
|
||||
|
@ -12,6 +12,8 @@
|
||||
#ifndef BUFFER_H
|
||||
#define BUFFER_H
|
||||
|
||||
#include "insets/InsetCode.h"
|
||||
|
||||
#include "support/FileName.h"
|
||||
#include "support/limited_stack.h"
|
||||
#include "support/types.h"
|
||||
@ -366,11 +368,8 @@ public:
|
||||
|
||||
/// Replace the inset contents for insets which InsetCode is equal
|
||||
/// to the passed \p inset_code.
|
||||
/// FIXME: we pass InsetCode as an int in order to avoid the inclusion
|
||||
/// of "Inset.h". It would be better to put InsetCode in its own
|
||||
/// header.
|
||||
void changeRefsIfUnique(docstring const & from, docstring const & to,
|
||||
int inset_code);
|
||||
InsetCode code);
|
||||
|
||||
/// get source code (latex/docbook) for some paragraphs, or all paragraphs
|
||||
/// including preamble
|
||||
|
Loading…
Reference in New Issue
Block a user