summaryrefslogtreecommitdiff
path: root/NxWidgets/ChangeLog.txt
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2013-02-01 14:53:38 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2013-02-01 14:53:38 +0000
commit43c642c61857ceefe07ce0fb929c569b52a545a5 (patch)
tree865d4f643ca3024818a963b2d5ff1aceb8c3a9f5 /NxWidgets/ChangeLog.txt
parent5a5bdf7d1b7afcf5c7b30209bdfad2abf2e72f3b (diff)
downloadpx4-nuttx-43c642c61857ceefe07ce0fb929c569b52a545a5.tar.gz
px4-nuttx-43c642c61857ceefe07ce0fb929c569b52a545a5.tar.bz2
px4-nuttx-43c642c61857ceefe07ce0fb929c569b52a545a5.zip
NxWidgets updates from Petteri Aimonen; buildroot GDB build fix from Ken Bannister
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5592 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'NxWidgets/ChangeLog.txt')
-rw-r--r--NxWidgets/ChangeLog.txt11
1 files changed, 11 insertions, 0 deletions
diff --git a/NxWidgets/ChangeLog.txt b/NxWidgets/ChangeLog.txt
index 744584ed4..be55a2e78 100644
--- a/NxWidgets/ChangeLog.txt
+++ b/NxWidgets/ChangeLog.txt
@@ -252,3 +252,14 @@
around this, I added several "enabling" settings to override the
default setting. This is awkward and I preferred the configuration as
it was before, but this avoids the mconf errors and warnings.
+* UnitTests: Changed occurrences of lib_rawprintf() and lib_lowprintf()
+ to match recent changes to NuttX (will be in NuttX-6.25)
+* CGraphicsPort::_drawText: Renamed from CGraphicsPort::drawText in order
+ to eliminate some naming collisions when overloaded in some configurations
+ (i.e., when both bool and nx_pixel_t are uint8_t). From Petteri Aimonen.
+* CNxWidgets::drawContents: Change base drawContents from a do-nothing
+ function to a function that fills the widget with the background color.
+ This is useful when using CNxWidgets as a "panel" , i.e. a container
+ for other widgets. Subclasses will override drawContents and decide
+ themselves how to draw the background.
+* CNxWidgets::CTabPanel: A new widget contributed by Petteri Aimonen.