diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-02 11:37:36 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-04 10:15:32 +0900 |
| commit | 1f99527a72e8c797114ec9524f22b47b5340d9d8 (patch) | |
| tree | 935d085e4f5d7db612f1b7ae2e28582c4d748b1f /src/viewarea.cpp | |
| parent | 436bc26605eddb1bc7c21b8efe6230674b86db60 (diff) | |
| download | kmplayer-1f99527a.tar.gz kmplayer-1f99527a.zip | |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 861ae27a46c4bb5d5c67feb6d8bbb4a37961b9cd)
Diffstat (limited to 'src/viewarea.cpp')
| -rw-r--r-- | src/viewarea.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/viewarea.cpp b/src/viewarea.cpp index 051c3ea..c76af9b 100644 --- a/src/viewarea.cpp +++ b/src/viewarea.cpp @@ -1353,7 +1353,7 @@ KDE_NO_CDTOR_EXPORT ViewArea::ViewArea (TQWidget * parent, View * view) m_minimal (false) { setEraseColor (TQColor (0, 0, 0)); setAcceptDrops (true); - new TDEAction (i18n ("Fullscreen"), TDEShortcut (TQt::Key_F), this, TQT_SLOT (accelActivated ()), m_collection, "view_fullscreen_toggle"); + new TDEAction (i18n ("Fullscreen"), TDEShortcut (TQt::Key_F), this, TQ_SLOT (accelActivated ()), m_collection, "view_fullscreen_toggle"); setMouseTracking (true); if (!image_data_map) imageCacheDeleter.setObject (image_data_map, new ImageDataMap); @@ -1387,7 +1387,7 @@ KDE_NO_EXPORT void ViewArea::fullScreen () { TQLabel * lbl = new TQLabel (i18n ("Scale:"), menu); scale_lbl_id = menu->insertItem (lbl, -1, 4); TQSlider * slider = new TQSlider (50, 150, 10, m_fullscreen_scale, TQt::Horizontal, menu); - connect (slider, TQT_SIGNAL (valueChanged (int)), this, TQT_SLOT (scale (int))); + connect (slider, TQ_SIGNAL (valueChanged (int)), this, TQ_SLOT (scale (int))); scale_slider_id = menu->insertItem (slider, -1, 5); m_view->controlPanel ()->button (ControlPanel::button_playlist)->setIconSet (TQIconSet (TQPixmap (normal_window_xpm))); } |
