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:37:19 +0900 |
commit | 223351618631800b3c98dcb1f51cc1941dab4706 (patch) | |
tree | eec85b584cdbea4f780f71ee2960f4226da6e20d | |
parent | 9c096a2002cc6f40b926cf3be0bbec774caf5219 (diff) | |
download | konversation-223351618631800b3c98dcb1f51cc1941dab4706.tar.gz konversation-223351618631800b3c98dcb1f51cc1941dab4706.zip |
Renaming of files in preparation for code style tools.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-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 7c55d13..c0342d5 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() { |