diff options
author | Luboš Luňák <l.lunak@suse.cz> | 2012-07-16 14:33:06 +0200 |
---|---|---|
committer | Luboš Luňák <l.lunak@suse.cz> | 2012-07-16 16:03:03 +0200 |
commit | 6080259862ee9886d1dabcb7c06132268a398cc6 (patch) | |
tree | 149b28e91f37aa243c494fa9339dd47e25655c50 /salhelper/Module_salhelper.mk | |
parent | ab9b5639b23ab5db93357bd076b65adea1b6e8b6 (diff) |
allow using rtl::OUString etc. simply as OUString, without rtl::
http://lists.freedesktop.org/archives/libreoffice/2012-April/029940.html
The RTL_USING #define (set by gbuild for anything that's not public
API) allows to use such classes simply by their name, without having
to use the namespace or do explicit using rtl::OUString (which half
of the sources do anyway).
Change-Id: I7edaf12cd278489cdc1d5ff782f0a86361c13c0a
Diffstat (limited to 'salhelper/Module_salhelper.mk')
-rw-r--r-- | salhelper/Module_salhelper.mk | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/salhelper/Module_salhelper.mk b/salhelper/Module_salhelper.mk index 08df523f0afd..7f111d899da3 100644 --- a/salhelper/Module_salhelper.mk +++ b/salhelper/Module_salhelper.mk @@ -28,8 +28,13 @@ $(eval $(call gb_Module_Module,salhelper)) $(eval $(call gb_Module_add_targets,salhelper,\ + CustomTarget_salhelper_allheaders \ Library_salhelper \ Package_inc \ )) +$(eval $(call gb_Module_add_check_targets,salhelper,\ + CppunitTest_salhelper_checkapi \ +)) + # vim: set noet sw=4 ts=4: |