diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-14 21:19:12 +0900 | 
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-24 16:56:48 +0900 | 
| commit | 757d80a919132cf72773928d53d100d22358de34 (patch) | |
| tree | 78f1145fbd227d1135514b40e66e2e4bcbe3fcce /kugar/part | |
| parent | 9abcf51de91242d1ab70230ba46abd2108416edf (diff) | |
| download | koffice-757d80a9.tar.gz koffice-757d80a9.zip | |
Remove various '#define' strings - part 6
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 3aab8aa05b954b80e336517f93463a9b5f50f3d6)
Diffstat (limited to 'kugar/part')
| -rw-r--r-- | kugar/part/kugar_view.cpp | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/kugar/part/kugar_view.cpp b/kugar/part/kugar_view.cpp index 602255ed8..6fa20b8b9 100644 --- a/kugar/part/kugar_view.cpp +++ b/kugar/part/kugar_view.cpp @@ -46,10 +46,10 @@ KugarView::KugarView( KugarPart *part, TQWidget *parent, const char *name )      // Define the actions. -    KStdAction::prior( TQT_TQOBJECT(view), TQT_SLOT( slotPrevPage() ), actionCollection(), "kuPrevPage" ); -    KStdAction::next( TQT_TQOBJECT(view), TQT_SLOT( slotNextPage() ), actionCollection(), "kuNextPage" ); -    KStdAction::firstPage( TQT_TQOBJECT(view), TQT_SLOT( slotFirstPage() ), actionCollection(), "kuFirstPage" ); -    KStdAction::lastPage( TQT_TQOBJECT(view), TQT_SLOT( slotLastPage() ), actionCollection(), "kuLastPage" ); +    KStdAction::prior( view, TQT_SLOT( slotPrevPage() ), actionCollection(), "kuPrevPage" ); +    KStdAction::next( view, TQT_SLOT( slotNextPage() ), actionCollection(), "kuNextPage" ); +    KStdAction::firstPage( view, TQT_SLOT( slotFirstPage() ), actionCollection(), "kuFirstPage" ); +    KStdAction::lastPage( view, TQT_SLOT( slotLastPage() ), actionCollection(), "kuLastPage" );      setXMLFile( "kugarpart.rc" ); | 
