Changes committed to git://oss.sgi.com/pcp/pcp-gui.git
VERSION | 4 ++--
build/rpm/pcp-gui.spec.in | 8 +++++++-
debian/changelog | 6 ++++++
debian/control | 10 ++++++++--
doc/CHANGES | 6 ++++++
src/chart/chart.cpp | 12 ++++++------
src/chart/main.cpp | 4 ++--
src/chart/main.h | 2 +-
src/chart/pmchart.cpp | 2 +-
src/chart/statusbar.cpp | 8 ++++----
src/chart/tabwidget.cpp | 2 +-
src/chart/timeaxis.cpp | 2 +-
src/dumptext/pmdumptext.cpp | 2 +-
13 files changed, 46 insertions(+), 22 deletions(-)
commit 426817fb03d3eb65c14664b851ed3c67998fdf6d
Author: Nathan Scott <nathans@xxxxxxxxxx>
Date: Tue May 5 11:10:41 2009 +1000
Bump stable version number to 1.4.0.
commit 941934b49a61276dbdeb135c5d9bb1a1a8a6c0c5
Author: Nathan Scott <nathans@xxxxxxxxxx>
Date: Tue May 5 11:09:17 2009 +1000
Make package descriptions more verbose, at request of some
Debian folk.
commit c7b2bdff4f676b895c1ec80c862bea8c689c918c
Author: Nathan Scott <nathans@xxxxxxxxxx>
Date: Tue May 5 04:42:03 2009 +0400
Fix the pmchart font problem under X11 -- FINALLY!
Reported by *many* people over the years now, particularly
prevalent on Fedora though. After a recent Debian upgrade
at last I have a system which exhibits the problem, and an
hour or so of prodding and poking uncovered the problem.
It turns out that the use of a global QFont object for the
small font was the cause. This meant the constructor was
being run before any other objects, including QApplication
and QMainWindow objects ... and somehow this confused all
manner of things downstream, once those later constructors
did get run. Converting this global to a pointer and then
calling the constructor at a more appropriate point in the
main() routine gets fonts displayed correctly. Yippeeeee!
commit 960fa440dc5faea161011164bf3509a47d7b4aaa
Author: Nathan Scott <nathans@xxxxxxxxxx>
Date: Tue May 5 04:34:10 2009 +0400
Fix a pmdumptext timezone handling bug.
Cannot use a QString-converted-to-C-string for putenv, we need
to strdup() that so that the C string does not change underneath
us (and hence accidentally get reflected in the environment).
Thanks to Rodney McKee for reporting this.
|