diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2021-01-21 20:37:19 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2021-01-21 20:38:16 +0900 |
commit | 10fed046ab89570b8f2a23dd0c6e7e7adcecf6dd (patch) | |
tree | 93a406829d298511f79c2e15a9de2155999da46f | |
parent | b4f9bf28e2f5982de6871812494e4d53959e2602 (diff) | |
download | konversation-10fed046ab89570b8f2a23dd0c6e7e7adcecf6dd.tar.gz konversation-10fed046ab89570b8f2a23dd0c6e7e7adcecf6dd.zip |
Renaming of files in preparation for code style tools.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 223351618631800b3c98dcb1f51cc1941dab4706)
-rw-r--r-- | konversation/Makefile.am | 2 | ||||
-rw-r--r-- | konversation/src/Makefile.am | 2 | ||||
-rw-r--r-- | konversation/src/osd.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/konversation/Makefile.am b/konversation/Makefile.am index 4641e7b..ceee48f 100644 --- a/konversation/Makefile.am +++ b/konversation/Makefile.am @@ -7,7 +7,7 @@ messages: rc.cpp # maybe someone will document the process of writing tips files, or tell me that # it needs to be done # $(PREPARETIPS) > tips.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)/konversation.pot; \ fi diff --git a/konversation/src/Makefile.am b/konversation/src/Makefile.am index 6f370fa..d068321 100644 --- a/konversation/src/Makefile.am +++ b/konversation/src/Makefile.am @@ -57,7 +57,7 @@ update_SCRIPTS = konversation-0.19-colors.pl konversation-0.19-sortorder.pl konv konversation-0.20-quickbuttons.pl konversation-0.20-customfonts.pl 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)/konversation.pot; \ fi diff --git a/konversation/src/osd.cpp b/konversation/src/osd.cpp index 3836e20..d342bab 100644 --- a/konversation/src/osd.cpp +++ b/konversation/src/osd.cpp @@ -400,7 +400,7 @@ void OSDPreviewWidget::mouseMoveEvent( TQMouseEvent *e ) } } -// the code was taken from pilotDaemon.cc in KPilot +// the code was taken from pilotDaemon.cpp in KPilot // static OSDWidget::KDesktopLockStatus OSDWidget::isKDesktopLockRunning() { |