diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-05 10:33:17 +0900 | 
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-05 10:33:17 +0900 | 
| commit | 1bc48a6ae2706e13093955e8181ac2f58a7ec3ac (patch) | |
| tree | 1d67fedde5ab6603080c8c786d55a1fcb44c45c4 /src/urlbutton.cpp | |
| parent | 71d014f5e8c8816163fdfdf63fb20e73cd1870e4 (diff) | |
| download | dolphin-1bc48a6ae2706e13093955e8181ac2f58a7ec3ac.tar.gz dolphin-1bc48a6ae2706e13093955e8181ac2f58a7ec3ac.zip | |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/urlbutton.cpp')
| -rw-r--r-- | src/urlbutton.cpp | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/src/urlbutton.cpp b/src/urlbutton.cpp index 6031048..977c4d1 100644 --- a/src/urlbutton.cpp +++ b/src/urlbutton.cpp @@ -41,9 +41,9 @@ URLButton::URLButton(URLNavigator* parent)      setSizePolicy(TQSizePolicy::Maximum, TQSizePolicy::Fixed);      setMinimumHeight(parent->minimumHeight()); -    connect(this, TQT_SIGNAL(clicked()), parent, TQT_SLOT(slotRequestActivation())); -    connect(&Dolphin::mainWin(), TQT_SIGNAL(activeViewChanged()), -            this, TQT_SLOT(update())); +    connect(this, TQ_SIGNAL(clicked()), parent, TQ_SLOT(slotRequestActivation())); +    connect(&Dolphin::mainWin(), TQ_SIGNAL(activeViewChanged()), +            this, TQ_SLOT(update()));  }  URLButton::~URLButton() | 
