Reflects .c->.cc file renames across Geeqie.
[geeqie.git] / doc / create-shortcuts-xml.sh
index 2e9e7db..d503044 100755 (executable)
@@ -28,7 +28,7 @@
 ## For separate windows, source code files are searched for the string "hard_coded_window_keys"  
 ## which is an array containing the shortcut key and the menu label.
 ##
-## For the main window the source file ./src/layout-util.c is searched for
+## For the main window the source file ./src/layout-util.cc is searched for
 ## lines which contain shortcut definitions.
 ##
 ## This needs to be run only when the sortcut keys have been changed
@@ -97,7 +97,7 @@ gsub(/"/, "", $3);
 {print "<row> <entry> <code>", $1, "<keycap>", $2, "</keycap> </code> </entry> <entry>", $3, "</entry> </row>"}
 '
 
-# This assumes that lines beginning with /^  { "/ are the only ones in layout-util.c containing key shortcuts
+# This assumes that lines beginning with /^  { "/ are the only ones in layout-util.cc containing key shortcuts
 # shellcheck disable=SC2016
 awk_main_window='BEGIN {
        {FS=","}
@@ -127,20 +127,20 @@ $0 ~ /^  { "/ {
 }
 '
 
-keys_xml=$(awk "$awk_window" ./src/dupe.c )
+keys_xml=$(awk "$awk_window" ./src/dupe.cc )
 printf '%b\n' "$pre_1_xml $duplicates_xml $pre_2_xml $keys_xml $post_xml" > ./doc/docbook/GuideReferenceDuplicatesShortcuts.xml
 
-keys_xml=$(awk "$awk_window" ./src/search.c )
+keys_xml=$(awk "$awk_window" ./src/search.cc )
 printf '%b\n' "$pre_1_xml $search_xml $pre_2_xml $keys_xml $post_xml" > ./doc/docbook/GuideReferenceSearchShortcuts.xml
 
-keys_xml=$(awk "$awk_window" ./src/pan-view/pan-view.c )
+keys_xml=$(awk "$awk_window" ./src/pan-view/pan-view.cc )
 printf '%b\n' "$pre_1_xml $pan_view_xml $pre_2_xml $keys_xml $post_xml" > ./doc/docbook/GuideReferencePanViewShortcuts.xml
 
-keys_xml=$(awk "$awk_window" ./src/collect-table.c)
+keys_xml=$(awk "$awk_window" ./src/collect-table.cc)
 printf '%b\n' "$pre_1_xml $collections_xml $pre_2_xml $keys_xml $post_xml" > ./doc/docbook/GuideReferenceCollectionsShortcuts.xml
 
-keys_xml=$(awk "$awk_window" ./src/img-view.c)
+keys_xml=$(awk "$awk_window" ./src/img-view.cc)
 printf '%b\n' "$pre_1_xml $image_xml $pre_2_xml $keys_xml $post_xml" > ./doc/docbook/GuideReferenceImageViewShortcuts.xml
 
-keys_xml=$(awk "$awk_main_window" ./src/layout-util.c)
+keys_xml=$(awk "$awk_main_window" ./src/layout-util.cc)
 printf '%b\n' "$pre_1_xml $main_window_xml $pre_2_xml $keys_xml $post_main_window_xml" > ./doc/docbook/GuideReferenceMainWindowShortcuts.xml