diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-31 00:19:30 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-31 00:19:30 -0600 |
commit | a31eff18050c0b56f1ca67b8baac5b7ad21f3523 (patch) | |
tree | 6c3f4ef4b4028423792f46d7e434aba6c9bf92ad /client | |
parent | d60bc130aa8d7fffedf235b054687ce8a4c91eaf (diff) | |
download | twin-style-crystal-a31eff18050c0b56f1ca67b8baac5b7ad21f3523.tar.gz twin-style-crystal-a31eff18050c0b56f1ca67b8baac5b7ad21f3523.zip |
Rename KShared
Diffstat (limited to 'client')
-rw-r--r-- | client/myrootpixmap.cc | 6 | ||||
-rw-r--r-- | client/myrootpixmap.h | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/client/myrootpixmap.cc b/client/myrootpixmap.cc index b06fec1..7a8b617 100644 --- a/client/myrootpixmap.cc +++ b/client/myrootpixmap.cc @@ -48,7 +48,7 @@ void KMyRootPixmap::init() { // d = new KMyRootPixmapData; // m_Fade = 0; - m_pPixmap = new KSharedPixmap; + m_pPixmap = new TDESharedPixmap; // m_pTimer = new TQTimer( this ); m_bInit = false; m_bActive = false; @@ -111,7 +111,7 @@ void KMyRootPixmap::repaint(bool force) { emit backgroundUpdated(NULL); }else{ - // KSharedPixmap will correctly generate a tile for us. + // TDESharedPixmap will correctly generate a tile for us. m_pPixmap->loadFromShared(pixmapName(m_Desk)); updateBackground( m_pPixmap ); } @@ -166,7 +166,7 @@ void KMyRootPixmap::slotDone(bool success) updateBackground( m_pPixmap ); } -void KMyRootPixmap::updateBackground( KSharedPixmap *spm ) +void KMyRootPixmap::updateBackground( TDESharedPixmap *spm ) { // printf("KMyRootPixmap::updateBackground(%p)\n",spm); TQPixmap *px=spm; diff --git a/client/myrootpixmap.h b/client/myrootpixmap.h index a80de57..02c450a 100644 --- a/client/myrootpixmap.h +++ b/client/myrootpixmap.h @@ -22,7 +22,7 @@ class TQRect; class TQWidget; class TQTimer; -class KSharedPixmap; +class TDESharedPixmap; class KMyRootPixmapData; class KMyRootPixmap: public TQObject @@ -73,7 +73,7 @@ signals: protected: // virtual bool eventFilter(TQObject *, TQEvent *); - virtual void updateBackground( KSharedPixmap * ); + virtual void updateBackground( TDESharedPixmap * ); private slots: // void slotBackgroundChanged(int); @@ -89,7 +89,7 @@ private: TQRect m_Rect; // TQWidget *m_pWidget; // TQTimer *m_pTimer; - KSharedPixmap *m_pPixmap; + TDESharedPixmap *m_pPixmap; // KMyRootPixmapData *d; void init(); |