diff options
author | Timothy Pearson <[email protected]> | 2011-12-18 18:10:44 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-12-18 18:10:44 -0600 |
commit | 15c49bc5b6d612d4021619c4f71c8bca1d692e28 (patch) | |
tree | d402577f3db7642d11fd7a5276bf5e8b474ffce0 /src/knemod/signalplotter.cpp | |
parent | d979df2f36840b03425e5dc40907f16d10fe4b5c (diff) | |
download | knemo-15c49bc5b6d612d4021619c4f71c8bca1d692e28.tar.gz knemo-15c49bc5b6d612d4021619c4f71c8bca1d692e28.zip |
Rename old tq methods that no longer need a unique name
Diffstat (limited to 'src/knemod/signalplotter.cpp')
-rw-r--r-- | src/knemod/signalplotter.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/knemod/signalplotter.cpp b/src/knemod/signalplotter.cpp index 6a362a6..6810d82 100644 --- a/src/knemod/signalplotter.cpp +++ b/src/knemod/signalplotter.cpp @@ -56,7 +56,7 @@ SignalPlotter::SignalPlotter( TQWidget *parent, const char *name ) // Anything smaller than this does not make sense. setMinimumSize( 16, 16 ); - tqsetSizePolicy( TQSizePolicy( TQSizePolicy::Expanding, + setSizePolicy( TQSizePolicy( TQSizePolicy::Expanding, TQSizePolicy::Expanding, false ) ); mShowVerticalLines = true; @@ -434,7 +434,7 @@ void SignalPlotter::paintEvent( TQPaintEvent* ) pm.fill( mBackgroundColor ); /* Draw white line along the bottom and the right side of the * widget to create a 3D like look. */ - p.setPen( TQColor( tqcolorGroup().light() ) ); + p.setPen( TQColor( colorGroup().light() ) ); p.drawLine( 0, h - 1, w - 1, h - 1 ); p.drawLine( w - 1, 0, w - 1, h - 1 ); |