office-gobmx/xmlscript
Noel Grandin e2080e70fe new compilerplugin returnbyref
Find places where we are returning a pointer to something, where we can
be returning a reference.
e.g.
   class A {
     struct X x;
     public X* getX() { return &x; }
   }
which can be:
     public X& getX() { return x; }

Change-Id: I796fd23fd36a18aedf6e36bc28f8fab4f518c6c7
2014-06-24 11:34:21 +02:00
..
dtd
inc/pch update_pch: add a bunch of pch files 2014-06-04 21:18:37 +02:00
source new compilerplugin returnbyref 2014-06-24 11:34:21 +02:00
test
util
Library_xmlscript.mk update_pch: add a bunch of pch files 2014-06-04 21:18:37 +02:00
Makefile
Module_xmlscript.mk
Package_dtd.mk
README

XML dialogs.

This code is used to (de)serialize basic dialogs to XML for storage
inside documents. While the XML -appears- to have some hierarchical
structure, that is only a fabrication, parsing and underlying toolkit
widget structure is sadly linear and flat.