diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2016-01-25 20:24:35 +1100 |
---|---|---|
committer | Chris Sherlock <chris.sherlock79@gmail.com> | 2016-01-25 20:27:30 +1100 |
commit | 0b99d78015760b72e033f25e8ae126d96fd572a3 (patch) | |
tree | d6b29b9b46d6f143a52dd6f3725790b9bcd87d25 | |
parent | 692a7c2e79e1446516776642c38d571e33c271e4 (diff) |
vcl: rename private ilstbox.hxx header to listbox.hxx
It actually was deliberately named "ilstbox.hxx", it wasn't a typo
as it stands for Implementation (the "i") and lstbox is
abbreviated, I assume because the original developers were
contorting themselves into getting filenames into DOS 8.3 chars...
Change-Id: I04e5927e9df754f5115829645ca0013792bf3c54
-rw-r--r-- | vcl/Library_vcl.mk | 4 | ||||
-rw-r--r-- | vcl/inc/listbox.hxx (renamed from vcl/inc/ilstbox.hxx) | 0 | ||||
-rw-r--r-- | vcl/source/control/combobox.cxx | 2 | ||||
-rw-r--r-- | vcl/source/control/imp_listbox.cxx (renamed from vcl/source/control/ilstbox.cxx) | 2 | ||||
-rw-r--r-- | vcl/source/control/listbox.cxx (renamed from vcl/source/control/lstbox.cxx) | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/vcl/Library_vcl.mk b/vcl/Library_vcl.mk index e53ce10b9991..ebce791328a5 100644 --- a/vcl/Library_vcl.mk +++ b/vcl/Library_vcl.mk @@ -210,10 +210,10 @@ $(eval $(call gb_Library_add_exception_objects,vcl,\ vcl/source/control/fixed \ vcl/source/control/fixedhyper \ vcl/source/control/group \ - vcl/source/control/ilstbox \ vcl/source/control/imgctrl \ vcl/source/control/longcurr \ - vcl/source/control/lstbox \ + vcl/source/control/imp_listbox \ + vcl/source/control/listbox \ vcl/source/control/menubtn \ vcl/source/control/morebtn \ vcl/source/control/quickselectionengine \ diff --git a/vcl/inc/ilstbox.hxx b/vcl/inc/listbox.hxx index 3490165ee0ec..3490165ee0ec 100644 --- a/vcl/inc/ilstbox.hxx +++ b/vcl/inc/listbox.hxx diff --git a/vcl/source/control/combobox.cxx b/vcl/source/control/combobox.cxx index 7e46076eb1f8..9d0bc7e1dc5b 100644 --- a/vcl/source/control/combobox.cxx +++ b/vcl/source/control/combobox.cxx @@ -33,7 +33,7 @@ #include <vcl/settings.hxx> #include <svdata.hxx> -#include <ilstbox.hxx> +#include "listbox.hxx" #include <controldata.hxx> diff --git a/vcl/source/control/ilstbox.cxx b/vcl/source/control/imp_listbox.cxx index 9079284ade0b..18e1756a524d 100644 --- a/vcl/source/control/ilstbox.cxx +++ b/vcl/source/control/imp_listbox.cxx @@ -28,7 +28,7 @@ #include <vcl/unohelp.hxx> #include <vcl/i18nhelp.hxx> -#include <ilstbox.hxx> +#include "listbox.hxx" #include <controldata.hxx> #include <svdata.hxx> #include <window.h> diff --git a/vcl/source/control/lstbox.cxx b/vcl/source/control/listbox.cxx index 6c7d3d870bf6..aa4f16e61d57 100644 --- a/vcl/source/control/lstbox.cxx +++ b/vcl/source/control/listbox.cxx @@ -32,7 +32,7 @@ #include "svdata.hxx" #include "controldata.hxx" -#include "ilstbox.hxx" +#include "listbox.hxx" #include "dndeventdispatcher.hxx" #include <com/sun/star/datatransfer/dnd/XDropTarget.hpp> |