diff options
author | Tor Lillqvist <tml@iki.fi> | 2013-06-24 18:04:09 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2013-06-24 18:04:14 +0300 |
commit | b139f6fedfcf3cbed0eadeb007e2155b576413d2 (patch) | |
tree | 00e4860205db3f58fbc318bd5a3a9e6d830f6c26 /vcl | |
parent | 7552edf94052784962de58229c9c844bf345b55a (diff) |
Remove leftover debugging printf
Besides, it caused a WaE: format '%d' expects argument of type 'int', but
argument 3 has type 'sal_Int32 {aka long int}'
Change-Id: Ib0360816e7d0a4829aff4267aa922269950d520c
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/control/edit.cxx | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/vcl/source/control/edit.cxx b/vcl/source/control/edit.cxx index 70f19f9004ec..513047c76426 100644 --- a/vcl/source/control/edit.cxx +++ b/vcl/source/control/edit.cxx @@ -219,7 +219,6 @@ void Edit::setMaxWidthChars(sal_Int32 nWidth) if (nWidth != mnMaxWidthChars) { mnMaxWidthChars = nWidth; - fprintf(stderr, "setMaxWidthChars of %d\n", nWidth); queue_resize(); } } |