Rename .C ==> .cpp for files in src/frontends, part one

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18016 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Bo Peng 2007-04-26 04:02:55 +00:00
parent 8c5f097b5d
commit 31334d3934
14 changed files with 28 additions and 28 deletions

View File

@ -454,14 +454,14 @@ src_frontends_header_files = Split('''
src_frontends_files = Split('''
Alert.C
Application.C
Dialogs.C
LyXView.C
Painter.C
Timeout.C
Toolbars.C
WorkArea.C
Alert.cpp
Application.cpp
Dialogs.cpp
LyXView.cpp
Painter.cpp
Timeout.cpp
Toolbars.cpp
WorkArea.cpp
''')

View File

@ -15,8 +15,8 @@ src/converter.C
src/debug.C
src/exporter.C
src/format.C
src/frontends/LyXView.C
src/frontends/WorkArea.C
src/frontends/LyXView.cpp
src/frontends/WorkArea.cpp
src/frontends/controllers/ControlAboutlyx.cpp
src/frontends/controllers/ControlBibtex.cpp
src/frontends/controllers/ControlBox.cpp

View File

@ -1,5 +1,5 @@
/**
* \file Alert.C
* \file Alert.cpp
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*

View File

@ -1,5 +1,5 @@
/**
* \file frontend/Application.C
* \file frontend/Application.cpp
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*

View File

@ -63,7 +63,7 @@ public:
} // namespace frontend
/// Implementation is in Application.C
/// Implementation is in Application.cpp
extern frontend::Clipboard & theClipboard();
} // namespace lyx

View File

@ -42,7 +42,7 @@ public:
} // namespace frontend
/// Implementation is in Application.C
/// Implementation is in Application.cpp
extern frontend::FontLoader & theFontLoader();
} // namespace lyx

View File

@ -118,7 +118,7 @@ public:
class LyXFont;
/// Implementation is in Application.C
/// Implementation is in Application.cpp
frontend::FontMetrics const & theFontMetrics(LyXFont const & f);
} // namespace lyx

View File

@ -1,5 +1,5 @@
/**
* \file LyXView.C
* \file LyXView.cpp
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*

View File

@ -13,10 +13,10 @@ noinst_LTLIBRARIES = libfrontends.la
AM_CPPFLAGS += $(PCH_FLAGS) -I$(srcdir)/.. $(BOOST_INCLUDES)
libfrontends_la_SOURCES = \
Alert.C \
Alert.cpp \
Alert.h \
Alert_pimpl.h \
Application.C \
Application.cpp \
Application.h \
NoGuiFontLoader.h \
NoGuiFontMetrics.h \
@ -27,19 +27,19 @@ libfrontends_la_SOURCES = \
FontMetrics.h \
LyXKeySym.h \
LyXKeySymFactory.h \
LyXView.C \
LyXView.cpp \
LyXView.h \
Menubar.h \
Painter.C \
Painter.cpp \
Painter.h \
Timeout.C \
Timeout.cpp \
Timeout.h \
Toolbars.C \
Toolbars.cpp \
Toolbars.h \
Clipboard.h \
Gui.h \
Selection.h \
WorkArea.C \
WorkArea.cpp \
WorkArea.h \
key_state.h \
mouse_state.h

View File

@ -1,5 +1,5 @@
/**
* \file Painter.C
* \file Painter.cpp
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*

View File

@ -67,7 +67,7 @@ public:
} // namespace frontend
/// Implementation is in Application.C
/// Implementation is in Application.cpp
extern frontend::Selection & theSelection();
} // namespace lyx

View File

@ -1,5 +1,5 @@
/**
* \file Timeout.C
* \file Timeout.cpp
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*

View File

@ -1,5 +1,5 @@
/**
* \file Toolbars.C
* \file Toolbars.cpp
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*

View File

@ -1,5 +1,5 @@
/**
* \file WorkArea.C
* \file WorkArea.cpp
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*