summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuboš Luňák <l.lunak@collabora.com>2019-07-01 11:24:46 +0200
committerLuboš Luňák <l.lunak@collabora.com>2019-07-06 10:08:40 +0200
commit48741ec47852d78000f71dc9f2b3e172ba94a894 (patch)
tree61aace0cf93590eeee3d0e3b2892313691ab8efa
parent9419850120242db68c55f2c7183dbbe87effd4ca (diff)
change Calc's shortcut for dumping cell properties to Ctrl+Shift+F6
Ctrl+Shift+F9 is the recalc-all shortcut, and so my dbgutil build litters dump.xml files all over the place (especially annoying in sc/qa/unit/data dirs, as test simply try to test all files in a dir and fail because of the dump.xml). Change-Id: I4d55e0aa69104626fcaa4264dc74f37203c46021 Reviewed-on: https://gerrit.libreoffice.org/74950 Tested-by: Jenkins Reviewed-by: Luboš Luňák <l.lunak@collabora.com>
-rw-r--r--sc/README2
-rw-r--r--sc/source/ui/view/gridwin.cxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/sc/README b/sc/README
index fdee3df23ee3..e355e0c3c612 100644
--- a/sc/README
+++ b/sc/README
@@ -10,7 +10,7 @@ Dumps the column width of the first 20 columns.
Dumps the graphic objects and their position and size in pixel.
-=== CTRL+SHIFT+F9 ===
+=== CTRL+SHIFT+F6 ===
Dumps the SfxItemSet representing the cell properties' of the
current selection as a xml file. The file will be named dump.xml
diff --git a/sc/source/ui/view/gridwin.cxx b/sc/source/ui/view/gridwin.cxx
index 74826da1aa37..555a7f0ca6dc 100644
--- a/sc/source/ui/view/gridwin.cxx
+++ b/sc/source/ui/view/gridwin.cxx
@@ -3175,7 +3175,7 @@ void ScGridWindow::KeyInput(const KeyEvent& rKEvt)
{
dumpColumnInformationHmm();
}
- else if (rKeyCode.GetCode() == KEY_F9)
+ else if (rKeyCode.GetCode() == KEY_F6)
{
dumpCellProperties();
}