diff options
author | Michele Calgaro <[email protected]> | 2023-12-09 18:25:41 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-12-10 00:55:58 +0900 |
commit | 6a101aa2ef54f02a292d6c28f23e2554a72e2bce (patch) | |
tree | f09a5825791af56e09934f662c82894dd4544edb /src/rip/k3bcddbpatternwidget.cpp | |
parent | 386d824e48f9c050b839ba313234cf7fa1ba833f (diff) | |
download | k3b-6a101aa2ef54f02a292d6c28f23e2554a72e2bce.tar.gz k3b-6a101aa2ef54f02a292d6c28f23e2554a72e2bce.zip |
Remove various '#define' strings - part 6
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit 766478630b5e0f435d8aef9ee7ba44651e4e431d)
Diffstat (limited to 'src/rip/k3bcddbpatternwidget.cpp')
-rw-r--r-- | src/rip/k3bcddbpatternwidget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rip/k3bcddbpatternwidget.cpp b/src/rip/k3bcddbpatternwidget.cpp index 2c8e533..d7d8546 100644 --- a/src/rip/k3bcddbpatternwidget.cpp +++ b/src/rip/k3bcddbpatternwidget.cpp @@ -41,7 +41,7 @@ K3bCddbPatternWidget::K3bCddbPatternWidget( TQWidget* parent, const char* name ) // additional the filename can never contain a slash / // and the dir should never start with a slash since it should always be a relative path - TQRegExpValidator* dirValidator = new TQRegExpValidator( TQRegExp( "[^/][^?\\*\\\"]*" ), TQT_TQOBJECT(this) ); + TQRegExpValidator* dirValidator = new TQRegExpValidator( TQRegExp( "[^/][^?\\*\\\"]*" ), this ); m_comboFilenamePattern->setValidator( dirValidator ); m_comboPlaylistPattern->setValidator( dirValidator ); m_editBlankReplace->setValidator( dirValidator ); |