diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2015-05-23 05:43:22 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2015-05-25 22:20:07 +0200 |
commit | e4c42413f11745760cfeb26f915d7cf7cc922264 (patch) | |
tree | 9865f5fd057ef7ffb8c5326f2fd64c70d0524ff4 /sc/source/ui/view/gridwin.cxx | |
parent | 20ddd5fe50bb2a9c62d6279ff118437fdbaf2102 (diff) |
add dump for column width in hmm
Change-Id: I0be3bfc7e8f8085c1c8e88d535cbb4142968ad28
Diffstat (limited to 'sc/source/ui/view/gridwin.cxx')
-rw-r--r-- | sc/source/ui/view/gridwin.cxx | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sc/source/ui/view/gridwin.cxx b/sc/source/ui/view/gridwin.cxx index 89d9b1157e8d..7a9f81f2ef2c 100644 --- a/sc/source/ui/view/gridwin.cxx +++ b/sc/source/ui/view/gridwin.cxx @@ -3513,12 +3513,16 @@ void ScGridWindow::KeyInput(const KeyEvent& rKEvt) { if (rKeyCode.GetCode() == KEY_F12) { - dumpColumnInformation(); + dumpColumnInformationPixel(); } else if (rKeyCode.GetCode() == KEY_F11) { dumpGraphicInformation(); } + else if (rKeyCode.GetCode() == KEY_F10) + { + dumpColumnInformationHmm(); + } } #endif |