[Libreoffice-commits] core.git: vcl/inc vcl/Library_vcl.mk vcl/source
Chris Sherlock
chris.sherlock79 at gmail.com
Mon Jan 25 01:28:30 PST 2016
vcl/Library_vcl.mk | 4
vcl/inc/ilstbox.hxx | 608 -------
vcl/inc/listbox.hxx | 608 +++++++
vcl/source/control/combobox.cxx | 2
vcl/source/control/ilstbox.cxx | 3150 -------------------------------------
vcl/source/control/imp_listbox.cxx | 3150 +++++++++++++++++++++++++++++++++++++
vcl/source/control/listbox.cxx | 1518 +++++++++++++++++
vcl/source/control/lstbox.cxx | 1518 -----------------
8 files changed, 5279 insertions(+), 5279 deletions(-)
New commits:
commit 0b99d78015760b72e033f25e8ae126d96fd572a3
Author: Chris Sherlock <chris.sherlock79 at gmail.com>
Date: Mon Jan 25 20:24:35 2016 +1100
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
diff --git a/vcl/Library_vcl.mk b/vcl/Library_vcl.mk
index e53ce10..ebce791 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
similarity index 100%
rename from vcl/inc/ilstbox.hxx
rename to vcl/inc/listbox.hxx
diff --git a/vcl/source/control/combobox.cxx b/vcl/source/control/combobox.cxx
index 7e46076..9d0bc7e 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
similarity index 99%
rename from vcl/source/control/ilstbox.cxx
rename to vcl/source/control/imp_listbox.cxx
index 9079284..18e1756 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
similarity index 99%
rename from vcl/source/control/lstbox.cxx
rename to vcl/source/control/listbox.cxx
index 6c7d3d8..aa4f16e 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>
More information about the Libreoffice-commits
mailing list