From 703fb0c89c2eee56a1e613e67a446db9d4287929 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Fri, 25 Jan 2013 00:35:07 -0600 Subject: Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4 --- KDE3PORTING.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'KDE3PORTING.html') diff --git a/KDE3PORTING.html b/KDE3PORTING.html index 1c96f6ecb..aa16c489a 100644 --- a/KDE3PORTING.html +++ b/KDE3PORTING.html @@ -391,7 +391,7 @@ TQString&) is not a slot anymore.
  • setMaxCacheAge( int )
  • setUseCache( bool )
  • setMaxCacheSize( int ) -
  • setCacheControl( KIO::CacheControl ) +
  • setCacheControl( TDEIO::CacheControl )
  • setUseProxy( bool )
  • setUseReverseProxy( bool )
  • setProxyType( ProxyType ) @@ -406,7 +406,7 @@ TQString&) is not a slot anymore.
  • In order to support files > 4Gb, the file size / file-offset argument in the signals totalSize, processedSize and canResume, which are used by the io-slaves and passed along to jobs, has been changed from - unsigned long to KIO::filesize_t. + unsigned long to TDEIO::filesize_t. Make sure to check if you use these signals since your compiler will typically not generate a compile-time error for these changes, instead you might get a run-time error when you try to connect to @@ -568,7 +568,7 @@ sorting is utilized by letting its view-items provide a TQString key() method. T KFileView offers the two methods which the view-classes can use to generate the string for the key() method. The KFile::SortMode enum has been removed, as TQDir::SortSpec is used entirely. @@ -577,8 +577,8 @@ enum has been removed, as TQDir::SortSpec is used entirely. Further changes: - - + + -- cgit v1.2.3
    Old:New:
    not existantvirtual void readConfig( KConfig *, const TQString& group = TQString::null )
    not existantvoid writeConfig( KConfig *, const TQString& group = TQString::null)
    not existantvirtual void readConfig( TDEConfig *, const TQString& group = TQString::null )
    not existantvoid writeConfig( TDEConfig *, const TQString& group = TQString::null)
    virtual void setCurrentItem( const TQString& filename, KFileViewItem * )Replaced with the two methods below.
     void setCurrentItem( const TQString& filename );
     virtual void setCurrentItem( const KFileViewItem * ) = 0;