summaryrefslogtreecommitdiff
path: root/extensions/source/propctrlr/standardcontrol.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-10-09 14:44:57 +0200
committerNoel Grandin <noel@peralex.com>2015-10-12 09:13:34 +0200
commita517b945e7e71cc928645431e1f28cc82f32844b (patch)
tree8eb0e3df311561b6bcc753fa750471e2800a7a74 /extensions/source/propctrlr/standardcontrol.hxx
parente1d7a84955f88be38e8daf9c0f4e242f8e8e3652 (diff)
improve naming of template parameters
Change-Id: If62a86b914db634c662949a04396b95e3f44be2a
Diffstat (limited to 'extensions/source/propctrlr/standardcontrol.hxx')
-rw-r--r--extensions/source/propctrlr/standardcontrol.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/extensions/source/propctrlr/standardcontrol.hxx b/extensions/source/propctrlr/standardcontrol.hxx
index 93c6c32ceba7..594c306eb313 100644
--- a/extensions/source/propctrlr/standardcontrol.hxx
+++ b/extensions/source/propctrlr/standardcontrol.hxx
@@ -51,11 +51,11 @@ namespace pcr
thus giving this class the same API (as far as the CommonBehaviourControl is concerned)
as all other windows.
*/
- template< class LISTBOX_WINDOW >
- class ListLikeControlWithModifyHandler : public ControlWindow< LISTBOX_WINDOW >
+ template< class TListboxWindow >
+ class ListLikeControlWithModifyHandler : public ControlWindow< TListboxWindow >
{
protected:
- typedef ControlWindow< LISTBOX_WINDOW > ListBoxType;
+ typedef ControlWindow< TListboxWindow > ListBoxType;
public:
ListLikeControlWithModifyHandler( vcl::Window* _pParent, WinBits _nStyle )