mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-29 13:04:58 +00:00
Biblio.{h,cpp} --> BiblioInfo.{h,cpp}
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19660 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
7a870a41d1
commit
cd772c60a5
@ -12,7 +12,7 @@ INC += boost
|
|||||||
|
|
||||||
HPP += ASpell_local.h
|
HPP += ASpell_local.h
|
||||||
HPP += Author.h
|
HPP += Author.h
|
||||||
HPP += Biblio.h
|
HPP += BiblioInfo.h
|
||||||
HPP += Bidi.h
|
HPP += Bidi.h
|
||||||
HPP += Box.h
|
HPP += Box.h
|
||||||
HPP += BranchList.h
|
HPP += BranchList.h
|
||||||
@ -122,7 +122,7 @@ HPP += version.h
|
|||||||
|
|
||||||
#CPP += ASpell.cpp
|
#CPP += ASpell.cpp
|
||||||
CPP += Author.cpp
|
CPP += Author.cpp
|
||||||
CPP += Biblio.cpp
|
CPP += BiblioInfo.cpp
|
||||||
CPP += Bidi.cpp
|
CPP += Bidi.cpp
|
||||||
CPP += Box.cpp
|
CPP += Box.cpp
|
||||||
CPP += BranchList.cpp
|
CPP += BranchList.cpp
|
||||||
|
@ -33,7 +33,7 @@ TOP_extra_files = Split('''
|
|||||||
src_header_files = Split('''
|
src_header_files = Split('''
|
||||||
ASpell_local.h
|
ASpell_local.h
|
||||||
Author.h
|
Author.h
|
||||||
Biblio.h
|
BiblioInfo.h
|
||||||
Bidi.h
|
Bidi.h
|
||||||
Box.h
|
Box.h
|
||||||
BranchList.h
|
BranchList.h
|
||||||
@ -144,7 +144,7 @@ src_header_files = Split('''
|
|||||||
|
|
||||||
src_pre_files = Split('''
|
src_pre_files = Split('''
|
||||||
Author.cpp
|
Author.cpp
|
||||||
Biblio.cpp
|
BiblioInfo.cpp
|
||||||
Bidi.cpp
|
Bidi.cpp
|
||||||
BranchList.cpp
|
BranchList.cpp
|
||||||
Buffer.cpp
|
Buffer.cpp
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
|
|
||||||
#include <config.h>
|
#include <config.h>
|
||||||
|
|
||||||
#include "Biblio.h"
|
#include "BiblioInfo.h"
|
||||||
#include "Buffer.h"
|
#include "Buffer.h"
|
||||||
#include "BufferParams.h"
|
#include "BufferParams.h"
|
||||||
#include "buffer_funcs.h"
|
#include "buffer_funcs.h"
|
@ -1,6 +1,6 @@
|
|||||||
// -*- C++ -*-
|
// -*- C++ -*-
|
||||||
/**
|
/**
|
||||||
* \file Biblio.h
|
* \file BiblioInfo.h
|
||||||
* This file is part of LyX, the document processor.
|
* This file is part of LyX, the document processor.
|
||||||
* Licence details can be found in the file COPYING.
|
* Licence details can be found in the file COPYING.
|
||||||
*
|
*
|
@ -13,7 +13,7 @@
|
|||||||
#include "Buffer.h"
|
#include "Buffer.h"
|
||||||
|
|
||||||
#include "Author.h"
|
#include "Author.h"
|
||||||
#include "Biblio.h"
|
#include "BiblioInfo.h"
|
||||||
#include "BranchList.h"
|
#include "BranchList.h"
|
||||||
#include "buffer_funcs.h"
|
#include "buffer_funcs.h"
|
||||||
#include "BufferList.h"
|
#include "BufferList.h"
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
#ifndef BUFFERPARAMS_H
|
#ifndef BUFFERPARAMS_H
|
||||||
#define BUFFERPARAMS_H
|
#define BUFFERPARAMS_H
|
||||||
|
|
||||||
#include "Biblio.h"
|
#include "BiblioInfo.h"
|
||||||
#include "TextClass.h"
|
#include "TextClass.h"
|
||||||
#include "paper.h"
|
#include "paper.h"
|
||||||
|
|
||||||
|
@ -78,8 +78,8 @@ endif
|
|||||||
liblyxcore_la_SOURCES = \
|
liblyxcore_la_SOURCES = \
|
||||||
Author.cpp \
|
Author.cpp \
|
||||||
Author.h \
|
Author.h \
|
||||||
Biblio.h \
|
BiblioInfo.h \
|
||||||
Biblio.cpp \
|
BiblioInfo.cpp \
|
||||||
Bidi.cpp \
|
Bidi.cpp \
|
||||||
Bidi.h \
|
Bidi.h \
|
||||||
boost.cpp \
|
boost.cpp \
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
#ifndef CONTROLCITATION_H
|
#ifndef CONTROLCITATION_H
|
||||||
#define CONTROLCITATION_H
|
#define CONTROLCITATION_H
|
||||||
|
|
||||||
#include "Biblio.h"
|
#include "BiblioInfo.h"
|
||||||
#include "ControlCommand.h"
|
#include "ControlCommand.h"
|
||||||
|
|
||||||
namespace lyx {
|
namespace lyx {
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
#ifndef INSETBASE_H
|
#ifndef INSETBASE_H
|
||||||
#define INSETBASE_H
|
#define INSETBASE_H
|
||||||
|
|
||||||
#include "Biblio.h"
|
//#include "BiblioInfo.h"
|
||||||
#include "Changes.h"
|
#include "Changes.h"
|
||||||
#include "Dimension.h"
|
#include "Dimension.h"
|
||||||
|
|
||||||
@ -26,6 +26,7 @@
|
|||||||
|
|
||||||
namespace lyx {
|
namespace lyx {
|
||||||
|
|
||||||
|
class BiblioInfo;
|
||||||
class Buffer;
|
class Buffer;
|
||||||
class BufferParams;
|
class BufferParams;
|
||||||
class BufferView;
|
class BufferView;
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
|
|
||||||
|
|
||||||
#include "InsetCommand.h"
|
#include "InsetCommand.h"
|
||||||
#include "Biblio.h"
|
#include "BiblioInfo.h"
|
||||||
|
|
||||||
|
|
||||||
namespace lyx {
|
namespace lyx {
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
|
|
||||||
#include <map>
|
#include <map>
|
||||||
#include "InsetCommand.h"
|
#include "InsetCommand.h"
|
||||||
#include "Biblio.h"
|
#include "BiblioInfo.h"
|
||||||
|
|
||||||
#include "support/FileName.h"
|
#include "support/FileName.h"
|
||||||
|
|
||||||
|
@ -13,7 +13,6 @@
|
|||||||
|
|
||||||
#include "InsetCitation.h"
|
#include "InsetCitation.h"
|
||||||
|
|
||||||
#include "Biblio.h"
|
|
||||||
#include "Buffer.h"
|
#include "Buffer.h"
|
||||||
#include "BufferParams.h"
|
#include "BufferParams.h"
|
||||||
#include "debug.h"
|
#include "debug.h"
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
|
|
||||||
#include "InsetCommand.h"
|
#include "InsetCommand.h"
|
||||||
|
|
||||||
#include "Biblio.h"
|
#include "BiblioInfo.h"
|
||||||
|
|
||||||
|
|
||||||
namespace lyx {
|
namespace lyx {
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
#ifndef INSET_INCLUDE_H
|
#ifndef INSET_INCLUDE_H
|
||||||
#define INSET_INCLUDE_H
|
#define INSET_INCLUDE_H
|
||||||
|
|
||||||
#include "Biblio.h"
|
#include "BiblioInfo.h"
|
||||||
#include "Inset.h"
|
#include "Inset.h"
|
||||||
#include "InsetCommandParams.h"
|
#include "InsetCommandParams.h"
|
||||||
#include "RenderButton.h"
|
#include "RenderButton.h"
|
||||||
|
Loading…
Reference in New Issue
Block a user