]> git.lyx.org Git - features.git/commitdiff
Rename .C ==> .cpp for files in src/frontends, part one
authorBo Peng <bpeng@lyx.org>
Thu, 26 Apr 2007 04:02:55 +0000 (04:02 +0000)
committerBo Peng <bpeng@lyx.org>
Thu, 26 Apr 2007 04:02:55 +0000 (04:02 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18016 a592a061-630c-0410-9148-cb99ea01b6c8

14 files changed:
development/scons/scons_manifest.py
po/POTFILES.in
src/frontends/Alert.C
src/frontends/Application.C
src/frontends/Clipboard.h
src/frontends/FontLoader.h
src/frontends/FontMetrics.h
src/frontends/LyXView.C
src/frontends/Makefile.am
src/frontends/Painter.C
src/frontends/Selection.h
src/frontends/Timeout.C
src/frontends/Toolbars.C
src/frontends/WorkArea.C

index 3fec72119fc9ec15151efe50ce973b3be8632d87..74ade016aaac548c5f965db8c6263418cad1c550 100644 (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
 ''')
 
 
index 7ab43d729158fbbf595c0ef5c8316562da2f23fb..5c9343fce30c3705cf0ffa49fd57ac5cfbe9acf6 100644 (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
index a339b8b015ea3cb11671648b178661fd5a4c94df..4ac7f9a4783b1022eb3213104e8d5f8820ffc873 100644 (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.
  *
index 08f678f9900bcb5d89e006ce3e4b774724a2b197..cd62f7982ca1916135ebda58b6976da970031462 100644 (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.
  *
index 67ce307e5226526ae239ff8e3b1ad963e3c5ce88..3381475cbce95123d80cfcd6c2a3c0f02966135a 100644 (file)
@@ -63,7 +63,7 @@ public:
 
 } // namespace frontend
 
-/// Implementation is in Application.C
+/// Implementation is in Application.cpp
 extern frontend::Clipboard & theClipboard();
 
 } // namespace lyx
index bddf8afcda0a2a30095b943fca6fa5992830b8be..f6b60043f62f850977ac946813baac24f6684400 100644 (file)
@@ -42,7 +42,7 @@ public:
 
 } // namespace frontend
 
-/// Implementation is in Application.C
+/// Implementation is in Application.cpp
 extern frontend::FontLoader & theFontLoader();
 
 } // namespace lyx
index cdad1946da1a67ad72db898a3e1afae4a4cc293c..c8087ebb2155a0674dbf228c8becd181c6cda973 100644 (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
index 1ae358e20e6d686c6bdafa238dbb2c818d534be1..6d6c9fcb30d1ca28d8d5dd0789ffa8bd118999b8 100644 (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.
  *
index 666f96530529fa94cdd26329f85a79f46dca26ce..791c4545f1d8b6f60f12a61baf4604dfe1298c01 100644 (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
index 845106188a1c99dce21788b115833725a9db67f0..2cba549793905eb1595a41b2cbaf0b1cfc7675f1 100644 (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.
  *
index 569ea0272d1c3ea4f508c64d3aa464db4f20f1d9..9f8af37f2d25b965e29cabe6ea522f451be84491 100644 (file)
@@ -67,7 +67,7 @@ public:
 
 } // namespace frontend
 
-/// Implementation is in Application.C
+/// Implementation is in Application.cpp
 extern frontend::Selection & theSelection();
 
 } // namespace lyx
index 21d673ce1aabac71620472761c1e7d76aee251b4..7ef659b3d9482d6e2c5411cb61639e41791b0ff7 100644 (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.
  *
index 9da8e1a4cf9d60991e1f411a29b4f7bc0a426375..fcf7e565c9eb689104756f6af0ddd17477a3b73b 100644 (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.
  *
index c1a89e18a9cb699702f9658e28e9a52ac646befc..d6d2c93a264d4070ab7094b7330d149236e7404c 100644 (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.
  *