diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2020-12-12 22:17:37 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2020-12-12 22:33:28 +0900 |
commit | a302d70f2c10e1b48259f6e2e8870f4ddf962e91 (patch) | |
tree | 1717352d649ddafe43460e7b458def99bce69022 | |
parent | ee93d1c0f2b9884c6ce02985a55cda502bf44c10 (diff) | |
download | tdeaddons-a302d70f2c10e1b48259f6e2e8870f4ddf962e91.tar.gz tdeaddons-a302d70f2c10e1b48259f6e2e8870f4ddf962e91.zip |
Renaming of files in preparation for code style tools.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit d8a307993b8d37b99b70d9d79de8afeb94927799)
-rw-r--r-- | kicker-applets/ktimemon/CMakeLists.txt | 2 | ||||
-rw-r--r-- | kicker-applets/ktimemon/Makefile.am | 4 | ||||
-rw-r--r-- | kicker-applets/ktimemon/confdlg.cpp (renamed from kicker-applets/ktimemon/confdlg.cc) | 0 | ||||
-rw-r--r-- | kicker-applets/ktimemon/sample.cpp (renamed from kicker-applets/ktimemon/sample.cc) | 2 | ||||
-rw-r--r-- | kicker-applets/ktimemon/timemon.cpp (renamed from kicker-applets/ktimemon/timemon.cc) | 0 | ||||
-rw-r--r-- | konq-plugins/autorefresh/Makefile.am | 2 | ||||
-rw-r--r-- | tdefile-plugins/lnk/lnkforward.cpp | 2 |
7 files changed, 6 insertions, 6 deletions
diff --git a/kicker-applets/ktimemon/CMakeLists.txt b/kicker-applets/ktimemon/CMakeLists.txt index 7d827d7..4419e45 100644 --- a/kicker-applets/ktimemon/CMakeLists.txt +++ b/kicker-applets/ktimemon/CMakeLists.txt @@ -16,7 +16,7 @@ link_directories( ##### ktimemon_panelapplet (kpart) ############## tde_add_kpart( ktimemon_panelapplet AUTOMOC - SOURCES confdlg.cc sample.cc timemon.cc + SOURCES confdlg.cpp sample.cpp timemon.cpp LINK tdeio-shared DESTINATION ${PLUGIN_INSTALL_DIR} ) diff --git a/kicker-applets/ktimemon/Makefile.am b/kicker-applets/ktimemon/Makefile.am index 6874509..d562a27 100644 --- a/kicker-applets/ktimemon/Makefile.am +++ b/kicker-applets/ktimemon/Makefile.am @@ -1,6 +1,6 @@ kde_module_LTLIBRARIES = ktimemon_panelapplet.la -ktimemon_panelapplet_la_SOURCES = confdlg.cc sample.cc timemon.cc +ktimemon_panelapplet_la_SOURCES = confdlg.cpp sample.cpp timemon.cpp METASOURCES = AUTO noinst_HEADERS = confdlg.h sample.h timemon.h @@ -18,5 +18,5 @@ lnkdir = $(kde_datadir)/kicker/applets EXTRA_DIST = $(lnk_DATA) messages: - $(XGETTEXT) *.cc -o $(podir)/ktimemon.pot + $(XGETTEXT) *.cpp -o $(podir)/ktimemon.pot diff --git a/kicker-applets/ktimemon/confdlg.cc b/kicker-applets/ktimemon/confdlg.cpp index 337f5c5..337f5c5 100644 --- a/kicker-applets/ktimemon/confdlg.cc +++ b/kicker-applets/ktimemon/confdlg.cpp diff --git a/kicker-applets/ktimemon/sample.cc b/kicker-applets/ktimemon/sample.cpp index ce2bdae..5864583 100644 --- a/kicker-applets/ktimemon/sample.cc +++ b/kicker-applets/ktimemon/sample.cpp @@ -4,7 +4,7 @@ /**********************************************************************/ /* - * sample.cc + * sample.cpp * * Definitions for the system dependent sampling class. */ diff --git a/kicker-applets/ktimemon/timemon.cc b/kicker-applets/ktimemon/timemon.cpp index 7984cf2..7984cf2 100644 --- a/kicker-applets/ktimemon/timemon.cc +++ b/kicker-applets/ktimemon/timemon.cpp diff --git a/konq-plugins/autorefresh/Makefile.am b/konq-plugins/autorefresh/Makefile.am index c4691e4..25ac1b8 100644 --- a/konq-plugins/autorefresh/Makefile.am +++ b/konq-plugins/autorefresh/Makefile.am @@ -14,7 +14,7 @@ autorefreshdir = $(kde_datadir)/tdehtml/kpartplugins autorefresh_DATA = autorefresh.rc autorefresh.desktop messages: rc.cpp - LIST=`find . -name \*.h -o -name \*.hh -o -name \*.H -o -name \*.hxx -o -name \*.hpp -o -name \*.cpp -o -name \*.cc -o -name \*.cxx -o -name \*.ecpp -o -name \*.C`; \ + LIST=`find . -name \*.h -o -name \*.cpp`; \ if test -n "$$LIST"; then \ $(XGETTEXT) $$LIST -o $(podir)/autorefresh.pot; \ fi diff --git a/tdefile-plugins/lnk/lnkforward.cpp b/tdefile-plugins/lnk/lnkforward.cpp index 0dab038..5cf72df 100644 --- a/tdefile-plugins/lnk/lnkforward.cpp +++ b/tdefile-plugins/lnk/lnkforward.cpp @@ -116,7 +116,7 @@ int LNKForwarder::run(TDECmdLineArgs *args) } //-------------------------------------------------------------------------------- -// copied from kfmclient.cc +// copied from kfmclient.cpp void LNKForwarder::delayedQuit() { |