diff --git a/KDE2PORTING.html b/KDE2PORTING.html index 63692b613..47e00c03b 100644 --- a/KDE2PORTING.html +++ b/KDE2PORTING.html @@ -694,15 +694,15 @@ can combine TreeView's and normal Tablists without problems.
+<tdetoolbarbutton.h> TDERadioGroup has been renamed to TDEToolBarRadioGroup and +requires you to include <tdetoolbarradiogroup.h>
Return to the Table of Contents
+declared globally in tdeaccel.h are now static methods in TDEAccel.
Return to the Table of Contents
diff --git a/KDE3PORTING.html b/KDE3PORTING.html index 407d5c5ad..457fd0cfa 100644 --- a/KDE3PORTING.html +++ b/KDE3PORTING.html @@ -154,9 +154,9 @@ not be available.- - kaccel->insertItem( i18n("Scroll Up"), "Scroll Up", "Up" ); - - kaccel->connectItem( "Scroll Up", this, TQT_SLOT(scrollUp()) ); - + kaccel->insert( "Scroll Up", i18n("Scroll Up"), TQString::null, + - tdeaccel->insertItem( i18n("Scroll Up"), "Scroll Up", "Up" ); + - tdeaccel->connectItem( "Scroll Up", this, TQT_SLOT(scrollUp()) ); + + tdeaccel->insert( "Scroll Up", i18n("Scroll Up"), TQString::null, Key_Up, this, TQT_SLOT(scrollUp()) );Note that a What's This parameter is now a part of the insert function. @@ -168,8 +168,8 @@ not be available. can replace it. Note, however, that this would be handled automatically by using TDEAction instead.
- - kaccel->changeMenuAccel( menu, id, "file_open" ); - + menu->setAccel( kaccel->shortcut( "file_open" ).keyCodeQt(), id ); + - tdeaccel->changeMenuAccel( menu, id, "file_open" ); + + menu->setAccel( tdeaccel->shortcut( "file_open" ).keyCodeQt(), id );