diff options
author | Timothy Pearson <[email protected]> | 2011-12-21 14:04:46 -0600 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2012-06-18 23:49:44 +0200 |
commit | bd8cc27bb451d668c6460c3c883dc7dd1054dd11 (patch) | |
tree | a43e2c6a3efff84e629e5189a6966b3991404e1b /src/pref.cpp | |
parent | 06d3cc396b46988b67349ac9043243e989eed4fd (diff) | |
download | kmplayer-bd8cc27bb451d668c6460c3c883dc7dd1054dd11.tar.gz kmplayer-bd8cc27bb451d668c6460c3c883dc7dd1054dd11.zip |
Rename obsolete tq methods to standard names
(cherry picked from commit 119c7d143c661c438bcd3ab82113ada44e9725fa)
Diffstat (limited to 'src/pref.cpp')
-rw-r--r-- | src/pref.cpp | 184 |
1 files changed, 92 insertions, 92 deletions
diff --git a/src/pref.cpp b/src/pref.cpp index 3ea1b9f..9ed1425 100644 --- a/src/pref.cpp +++ b/src/pref.cpp @@ -202,21 +202,21 @@ KDE_NO_CDTOR_EXPORT Preferences::~Preferences() { KDE_NO_CDTOR_EXPORT PrefGeneralPageGeneral::PrefGeneralPageGeneral(TQWidget *parent, Settings *) : TQFrame (parent, "GeneralPage") { - TQVBoxLayout *tqlayout = new TQVBoxLayout(this, 5, 2); + TQVBoxLayout *layout = new TQVBoxLayout(this, 5, 2); TQGroupBox *windowbox = new TQGroupBox(1, Qt::Vertical, i18n("Window"), this); TQWidget * wbox = new TQWidget (windowbox); TQWidget * bbox = new TQWidget (wbox); - TQGridLayout * gridtqlayout = new TQGridLayout (bbox, 2, 2); + TQGridLayout * gridlayout = new TQGridLayout (bbox, 2, 2); keepSizeRatio = new TQCheckBox (i18n ("Keep size ratio"), bbox, 0); TQWhatsThis::add(keepSizeRatio, i18n("When checked, movie will keep its aspect ratio\nwhen window is resized")); dockSysTray = new TQCheckBox (i18n ("Dock in system tray"), bbox, 0); TQWhatsThis::add (dockSysTray, i18n ("When checked, an icon of KMPlayer will be added to the system tray.\nWhen clicked it will hide KMPlayer's main window and removing KMPlayer's taskbar button.")); autoResize = new TQCheckBox (i18n ("Auto resize to video sizes"), bbox); TQWhatsThis::add (autoResize, i18n("When checked, KMPlayer will resize to movie sizes\nwhen video starts")); - gridtqlayout->addWidget (keepSizeRatio, 0, 0); - gridtqlayout->addWidget (dockSysTray, 1, 0); - gridtqlayout->addWidget (autoResize, 0, 1); + gridlayout->addWidget (keepSizeRatio, 0, 0); + gridlayout->addWidget (dockSysTray, 1, 0); + gridlayout->addWidget (autoResize, 0, 1); sizesChoice = new TQButtonGroup (2, Qt::Vertical, wbox); new TQRadioButton (i18n("Remember window size on exit"), sizesChoice); new TQRadioButton (i18n("Always start with fixed size"), sizesChoice); @@ -237,7 +237,7 @@ KDE_NO_CDTOR_EXPORT PrefGeneralPageGeneral::PrefGeneralPageGeneral(TQWidget *par TQGroupBox * gbox =new TQGroupBox (1, Qt::Vertical, i18n("Control Panel"), this); bbox =new TQWidget (gbox); //TQGroupBox * bbox = gbox; - gridtqlayout = new TQGridLayout (bbox, 3, 2); + gridlayout = new TQGridLayout (bbox, 3, 2); showConfigButton = new TQCheckBox(i18n("Show config button"), bbox); TQWhatsThis::add (showConfigButton, i18n ("Add a button that will popup a config menu")); showPlaylistButton = new TQCheckBox(i18n("Show playlist button"), bbox); @@ -246,10 +246,10 @@ KDE_NO_CDTOR_EXPORT PrefGeneralPageGeneral::PrefGeneralPageGeneral(TQWidget *par TQWhatsThis::add (showRecordButton, i18n ("Add a record button to the control buttons")); showBroadcastButton = new TQCheckBox (i18n ("Show broadcast button"), bbox); TQWhatsThis::add (showBroadcastButton, i18n ("Add a broadcast button to the control buttons")); - gridtqlayout->addWidget (showConfigButton, 0, 0); - gridtqlayout->addWidget (showPlaylistButton, 0, 1); - gridtqlayout->addWidget (showRecordButton, 1, 0); - gridtqlayout->addWidget (showBroadcastButton, 1, 1); + gridlayout->addWidget (showConfigButton, 0, 0); + gridlayout->addWidget (showPlaylistButton, 0, 1); + gridlayout->addWidget (showRecordButton, 1, 0); + gridlayout->addWidget (showBroadcastButton, 1, 1); //TQWidget *seekingWidget = new TQWidget (bbox); TQHBoxLayout *seekLayout = new TQHBoxLayout (bbox); seekLayout->addWidget(new TQLabel(i18n("Forward/backward seek time:"),bbox)); @@ -257,20 +257,20 @@ KDE_NO_CDTOR_EXPORT PrefGeneralPageGeneral::PrefGeneralPageGeneral(TQWidget *par seekTime = new TQSpinBox(1, 600, 1, bbox); seekLayout->addWidget(seekTime); seekLayout->addItem(new TQSpacerItem(0,0,TQSizePolicy::Minimum, TQSizePolicy::Minimum)); - gridtqlayout->addMultiCellLayout (seekLayout, 2, 2, 0, 1); + gridlayout->addMultiCellLayout (seekLayout, 2, 2, 0, 1); - tqlayout->addWidget (windowbox); - tqlayout->addWidget (playbox); - tqlayout->addWidget (gbox); - //tqlayout->addWidget(autoHideSlider); - tqlayout->addItem (new TQSpacerItem (0, 0, TQSizePolicy::Minimum, TQSizePolicy::Expanding)); + layout->addWidget (windowbox); + layout->addWidget (playbox); + layout->addWidget (gbox); + //layout->addWidget(autoHideSlider); + layout->addItem (new TQSpacerItem (0, 0, TQSizePolicy::Minimum, TQSizePolicy::Expanding)); } KDE_NO_CDTOR_EXPORT PrefGeneralPageLooks::PrefGeneralPageLooks (TQWidget *parent, Settings * settings) : TQFrame (parent, "LooksPage"), colors (settings->colors), fonts (settings->fonts) { - TQVBoxLayout *tqlayout = new TQVBoxLayout(this, 5, 2); + TQVBoxLayout *layout = new TQVBoxLayout(this, 5, 2); TQGroupBox *colorbox= new TQGroupBox(2, Qt::Horizontal, i18n("Colors"), this); colorscombo = new TQComboBox (colorbox); @@ -296,9 +296,9 @@ KDE_NO_CDTOR_EXPORT PrefGeneralPageLooks::PrefGeneralPageLooks (TQWidget *parent fontbutton->setFont (fonts[0].font); connect (fontbutton, TQT_SIGNAL (clicked ()), this, TQT_SLOT (fontClicked ())); - tqlayout->addWidget (colorbox); - tqlayout->addWidget (fontbox); - tqlayout->addItem (new TQSpacerItem (0, 0, TQSizePolicy::Minimum, TQSizePolicy::Expanding)); + layout->addWidget (colorbox); + layout->addWidget (fontbox); + layout->addItem (new TQSpacerItem (0, 0, TQSizePolicy::Minimum, TQSizePolicy::Expanding)); } KDE_NO_EXPORT void PrefGeneralPageLooks::colorItemChanged (int c) { @@ -330,9 +330,9 @@ KDE_NO_EXPORT void PrefGeneralPageLooks::fontClicked () { KDE_NO_CDTOR_EXPORT PrefSourcePageURL::PrefSourcePageURL (TQWidget *parent) : TQFrame (parent, "URLPage") { - TQVBoxLayout *tqlayout = new TQVBoxLayout (this, 5, 5); - TQHBoxLayout * urltqlayout = new TQHBoxLayout (); - TQHBoxLayout * sub_urltqlayout = new TQHBoxLayout (); + TQVBoxLayout *layout = new TQVBoxLayout (this, 5, 5); + TQHBoxLayout * urllayout = new TQHBoxLayout (); + TQHBoxLayout * sub_urllayout = new TQHBoxLayout (); TQLabel *urlLabel = new TQLabel (i18n ("Location:"), this, 0); urllist = new KComboBox (true, this); urllist->setMaxCount (20); @@ -351,36 +351,36 @@ KDE_NO_CDTOR_EXPORT PrefSourcePageURL::PrefSourcePageURL (TQWidget *parent) backend = new TQListBox (this); allowhref = new TQCheckBox (i18n ("Enable 'Click to Play' support"), this); TQWhatsThis::add (allowhref, i18n ("Support for WEB pages having a start image")); - tqlayout->addWidget (allowhref); - urltqlayout->addWidget (urlLabel); - urltqlayout->addWidget (url); - tqlayout->addLayout (urltqlayout); - sub_urltqlayout->addWidget (sub_urlLabel); - sub_urltqlayout->addWidget (sub_url); - tqlayout->addLayout (sub_urltqlayout); - tqlayout->addItem (new TQSpacerItem (0, 10, TQSizePolicy::Minimum, TQSizePolicy::Minimum)); - TQGridLayout * gridtqlayout = new TQGridLayout (2, 2); + layout->addWidget (allowhref); + urllayout->addWidget (urlLabel); + urllayout->addWidget (url); + layout->addLayout (urllayout); + sub_urllayout->addWidget (sub_urlLabel); + sub_urllayout->addWidget (sub_url); + layout->addLayout (sub_urllayout); + layout->addItem (new TQSpacerItem (0, 10, TQSizePolicy::Minimum, TQSizePolicy::Minimum)); + TQGridLayout * gridlayout = new TQGridLayout (2, 2); TQLabel *backendLabel = new TQLabel (i18n ("Use movie player:"), this, 0); //TQWhatsThis::add (allowhref, i18n ("Explain this in a few lines")); - gridtqlayout->addWidget (backendLabel, 0, 0); - gridtqlayout->addWidget (backend, 1, 0); - gridtqlayout->addMultiCell (new TQSpacerItem (0, 0, TQSizePolicy::Expanding, TQSizePolicy::Minimum), 0, 1, 1, 1); + gridlayout->addWidget (backendLabel, 0, 0); + gridlayout->addWidget (backend, 1, 0); + gridlayout->addMultiCell (new TQSpacerItem (0, 0, TQSizePolicy::Expanding, TQSizePolicy::Minimum), 0, 1, 1, 1); TQGroupBox *cbox = new TQGroupBox(1, Qt::Vertical, i18n("Network bandwidth"), this); TQWidget * wbox = new TQWidget (cbox); - TQGridLayout * bitratetqlayout = new TQGridLayout (wbox, 2, 3, 5); + TQGridLayout * bitratelayout = new TQGridLayout (wbox, 2, 3, 5); prefBitRate = new TQLineEdit (wbox); TQWhatsThis::add (prefBitRate, i18n("Sometimes it is possible to choose between various streams given a particular bitrate.\nThis option sets how much bandwidth you would prefer to allocate to video.")); maxBitRate = new TQLineEdit (wbox); TQWhatsThis::add (maxBitRate, i18n("Sometimes it is possible to choose between various streams given a particular bitrate.\nThis option sets the maximum bandwidth you have available for video.")); - bitratetqlayout->addWidget(new TQLabel(i18n("Preferred bitrate:"), wbox), 0, 0); - bitratetqlayout->addWidget (prefBitRate, 0, 1); - bitratetqlayout->addWidget (new TQLabel (i18n ("kbit/s"), wbox), 0, 2); - bitratetqlayout->addWidget (new TQLabel(i18n("Maximum bitrate:"), wbox), 1, 0); - bitratetqlayout->addWidget (maxBitRate, 1, 1); - bitratetqlayout->addWidget (new TQLabel (i18n ("kbit/s"), wbox), 1, 2); - tqlayout->addLayout (gridtqlayout); - tqlayout->addWidget (cbox); - tqlayout->addItem (new TQSpacerItem (0, 0, TQSizePolicy::Minimum, TQSizePolicy::Expanding)); + bitratelayout->addWidget(new TQLabel(i18n("Preferred bitrate:"), wbox), 0, 0); + bitratelayout->addWidget (prefBitRate, 0, 1); + bitratelayout->addWidget (new TQLabel (i18n ("kbit/s"), wbox), 0, 2); + bitratelayout->addWidget (new TQLabel(i18n("Maximum bitrate:"), wbox), 1, 0); + bitratelayout->addWidget (maxBitRate, 1, 1); + bitratelayout->addWidget (new TQLabel (i18n ("kbit/s"), wbox), 1, 2); + layout->addLayout (gridlayout); + layout->addWidget (cbox); + layout->addItem (new TQSpacerItem (0, 0, TQSizePolicy::Minimum, TQSizePolicy::Expanding)); connect (urllist, TQT_SIGNAL(textChanged (const TQString &)), this, TQT_SLOT (slotTextChanged (const TQString &))); connect (sub_urllist, TQT_SIGNAL(textChanged (const TQString &)), @@ -395,18 +395,18 @@ KDE_NO_EXPORT void PrefSourcePageURL::slotTextChanged (const TQString &) { } KDE_NO_CDTOR_EXPORT PrefRecordPage::PrefRecordPage (TQWidget *parent, PartBase * player, RecorderPage * rl, int rec_len) : TQFrame (parent, "RecordPage"), m_player (player), m_recorders (rl), m_recorders_length (rec_len) { - TQVBoxLayout *tqlayout = new TQVBoxLayout (this, 5, 5); - TQHBoxLayout * urltqlayout = new TQHBoxLayout (); + TQVBoxLayout *layout = new TQVBoxLayout (this, 5, 5); + TQHBoxLayout * urllayout = new TQHBoxLayout (); TQLabel *urlLabel = new TQLabel (i18n ("Output file:"), this); url = new KURLRequester ("", this); url->setShowLocalProtocol (true); - urltqlayout->addWidget (urlLabel); - urltqlayout->addWidget (url); + urllayout->addWidget (urlLabel); + urllayout->addWidget (url); recordButton = new TQPushButton (i18n ("Start &Recording"), this); connect (recordButton, TQT_SIGNAL (clicked ()), this, TQT_SLOT (slotRecord ())); - TQHBoxLayout *buttontqlayout = new TQHBoxLayout; - buttontqlayout->addItem (new TQSpacerItem (0, 0, TQSizePolicy::Minimum, TQSizePolicy::Minimum)); - buttontqlayout->addWidget (recordButton); + TQHBoxLayout *buttonlayout = new TQHBoxLayout; + buttonlayout->addItem (new TQSpacerItem (0, 0, TQSizePolicy::Minimum, TQSizePolicy::Minimum)); + buttonlayout->addWidget (recordButton); source = new TQLabel (i18n ("Current source: ") + m_player->source ()->prettyName (), this); recorder = new TQButtonGroup (m_recorders_length, Qt::Vertical, i18n ("Recorder"), this); for (RecorderPage * p = m_recorders; p; p = p->next) @@ -420,20 +420,20 @@ KDE_NO_CDTOR_EXPORT PrefRecordPage::PrefRecordPage (TQWidget *parent, PartBase * new TQRadioButton (i18n ("A&fter"), replay); TQWidget * customreplay = new TQWidget (replay); replaytime = new TQLineEdit (customreplay); - TQHBoxLayout *replaytqlayout = new TQHBoxLayout (customreplay); - replaytqlayout->addWidget (new TQLabel (i18n("Time (seconds):"), customreplay)); - replaytqlayout->addWidget (replaytime); - replaytqlayout->addItem (new TQSpacerItem (0, 0, TQSizePolicy::Expanding, TQSizePolicy::Minimum)); - tqlayout->addWidget (source); - tqlayout->addItem (new TQSpacerItem (5, 0, TQSizePolicy::Minimum, TQSizePolicy::Minimum)); - tqlayout->addLayout (urltqlayout); - tqlayout->addItem (new TQSpacerItem (5, 0, TQSizePolicy::Minimum, TQSizePolicy::Minimum)); - tqlayout->addWidget (recorder); - tqlayout->addItem (new TQSpacerItem (5, 0, TQSizePolicy::Minimum, TQSizePolicy::Minimum)); - tqlayout->addWidget (replay); - tqlayout->addItem (new TQSpacerItem (5, 0, TQSizePolicy::Minimum, TQSizePolicy::Minimum)); - tqlayout->addLayout (buttontqlayout); - tqlayout->addItem (new TQSpacerItem (5, 0, TQSizePolicy::Minimum, TQSizePolicy::Expanding)); + TQHBoxLayout *replaylayout = new TQHBoxLayout (customreplay); + replaylayout->addWidget (new TQLabel (i18n("Time (seconds):"), customreplay)); + replaylayout->addWidget (replaytime); + replaylayout->addItem (new TQSpacerItem (0, 0, TQSizePolicy::Expanding, TQSizePolicy::Minimum)); + layout->addWidget (source); + layout->addItem (new TQSpacerItem (5, 0, TQSizePolicy::Minimum, TQSizePolicy::Minimum)); + layout->addLayout (urllayout); + layout->addItem (new TQSpacerItem (5, 0, TQSizePolicy::Minimum, TQSizePolicy::Minimum)); + layout->addWidget (recorder); + layout->addItem (new TQSpacerItem (5, 0, TQSizePolicy::Minimum, TQSizePolicy::Minimum)); + layout->addWidget (replay); + layout->addItem (new TQSpacerItem (5, 0, TQSizePolicy::Minimum, TQSizePolicy::Minimum)); + layout->addLayout (buttonlayout); + layout->addItem (new TQSpacerItem (5, 0, TQSizePolicy::Minimum, TQSizePolicy::Expanding)); connect (m_player, TQT_SIGNAL (sourceChanged(KMPlayer::Source*,KMPlayer::Source*)), this, TQT_SLOT (sourceChanged(KMPlayer::Source*,KMPlayer::Source*))); #ifdef HAVE_XINE connect (recorder, TQT_SIGNAL (clicked(int)), this, TQT_SLOT(recorderClicked(int))); @@ -538,18 +538,18 @@ KDE_NO_EXPORT void RecorderPage::record () { } KDE_NO_CDTOR_EXPORT PrefMEncoderPage::PrefMEncoderPage (TQWidget *parent, PartBase * player) : RecorderPage (parent, player) { - TQVBoxLayout *tqlayout = new TQVBoxLayout (this, 5, 5); + TQVBoxLayout *layout = new TQVBoxLayout (this, 5, 5); format = new TQButtonGroup (3, Qt::Vertical, i18n ("Format"), this); new TQRadioButton (i18n ("Same as source"), format); new TQRadioButton (i18n ("Custom"), format); TQWidget * customopts = new TQWidget (format); - TQGridLayout *gridtqlayout = new TQGridLayout (customopts, 1, 2, 2); + TQGridLayout *gridlayout = new TQGridLayout (customopts, 1, 2, 2); TQLabel *argLabel = new TQLabel (i18n("Mencoder arguments:"), customopts, 0); arguments = new TQLineEdit ("", customopts); - gridtqlayout->addWidget (argLabel, 0, 0); - gridtqlayout->addWidget (arguments, 0, 1); - tqlayout->addWidget (format); - tqlayout->addItem (new TQSpacerItem (0, 0, TQSizePolicy::Minimum, TQSizePolicy::Expanding)); + gridlayout->addWidget (argLabel, 0, 0); + gridlayout->addWidget (arguments, 0, 1); + layout->addWidget (format); + layout->addItem (new TQSpacerItem (0, 0, TQSizePolicy::Minimum, TQSizePolicy::Expanding)); connect (format, TQT_SIGNAL (clicked (int)), this, TQT_SLOT (formatClicked (int))); } @@ -580,14 +580,14 @@ KDE_NO_EXPORT TQString PrefMPlayerDumpstreamPage::name () { } KDE_NO_CDTOR_EXPORT PrefFFMpegPage::PrefFFMpegPage (TQWidget *parent, PartBase * player) : RecorderPage (parent, player) { - TQVBoxLayout *tqlayout = new TQVBoxLayout (this, 5, 5); - TQGridLayout *gridtqlayout = new TQGridLayout (1, 2, 2); + TQVBoxLayout *layout = new TQVBoxLayout (this, 5, 5); + TQGridLayout *gridlayout = new TQGridLayout (1, 2, 2); TQLabel *argLabel = new TQLabel (i18n("FFMpeg arguments:"), this); arguments = new TQLineEdit ("", this); - gridtqlayout->addWidget (argLabel, 0, 0); - gridtqlayout->addWidget (arguments, 0, 1); - tqlayout->addLayout (gridtqlayout); - tqlayout->addItem (new TQSpacerItem (0, 0, TQSizePolicy::Minimum, TQSizePolicy::Expanding)); + gridlayout->addWidget (argLabel, 0, 0); + gridlayout->addWidget (arguments, 0, 1); + layout->addLayout (gridlayout); + layout->addItem (new TQSpacerItem (0, 0, TQSizePolicy::Minimum, TQSizePolicy::Expanding)); } KDE_NO_EXPORT void PrefFFMpegPage::record () { @@ -611,28 +611,28 @@ KDE_NO_EXPORT TQString PrefXinePage::name () { KDE_NO_CDTOR_EXPORT PrefGeneralPageOutput::PrefGeneralPageOutput(TQWidget *parent, OutputDriver * ad, OutputDriver * vd) : TQFrame (parent) { - TQGridLayout *tqlayout = new TQGridLayout (this, 2, 2, 5); + TQGridLayout *layout = new TQGridLayout (this, 2, 2, 5); videoDriver = new TQListBox (this); for (int i = 0; vd[i].driver; i++) videoDriver->insertItem (vd[i].description, i); TQWhatsThis::add(videoDriver, i18n("Sets video driver. Recommended is XVideo, or, if it is not supported, X11, which is slower.")); - tqlayout->addWidget (new TQLabel (i18n ("Video driver:"), this), 0, 0); - tqlayout->addWidget (videoDriver, 1, 0); + layout->addWidget (new TQLabel (i18n ("Video driver:"), this), 0, 0); + layout->addWidget (videoDriver, 1, 0); audioDriver = new TQListBox (this); for (int i = 0; ad[i].driver; i++) audioDriver->insertItem (ad[i].description, i); - tqlayout->addWidget (new TQLabel (i18n ("Audio driver:"), this), 0, 1); - tqlayout->addWidget (audioDriver, 1, 1); - tqlayout->addItem (new TQSpacerItem (0, 0, TQSizePolicy::Minimum, TQSizePolicy::Expanding)); + layout->addWidget (new TQLabel (i18n ("Audio driver:"), this), 0, 1); + layout->addWidget (audioDriver, 1, 1); + layout->addItem (new TQSpacerItem (0, 0, TQSizePolicy::Minimum, TQSizePolicy::Expanding)); } KDE_NO_CDTOR_EXPORT PrefOPPageGeneral::PrefOPPageGeneral(TQWidget *parent) : TQFrame(parent) { - TQVBoxLayout *tqlayout = new TQVBoxLayout (this, 5); - tqlayout->setAutoAdd (true); + TQVBoxLayout *layout = new TQVBoxLayout (this, 5); + layout->setAutoAdd (true); } KDE_NO_CDTOR_EXPORT PrefOPPagePostProc::PrefOPPagePostProc(TQWidget *parent) : TQFrame(parent) @@ -686,8 +686,8 @@ KDE_NO_CDTOR_EXPORT PrefOPPagePostProc::PrefOPPagePostProc(TQWidget *parent) : T customFilters->setEnabled( false ); customFilters->setInsideSpacing(7); - TQLayout *customFiltersLayout = customFilters->tqlayout(); - TQHBoxLayout *customFiltersLayout1 = new TQHBoxLayout ( customFilters->tqlayout() ); + TQLayout *customFiltersLayout = customFilters->layout(); + TQHBoxLayout *customFiltersLayout1 = new TQHBoxLayout ( customFilters->layout() ); HzDeblockFilter = new TQCheckBox (i18n ("Horizontal deblocking"), customFilters); HzDeblockAQuality = new TQCheckBox (i18n ("Auto quality"), customFilters); @@ -706,7 +706,7 @@ KDE_NO_CDTOR_EXPORT PrefOPPagePostProc::PrefOPPagePostProc(TQWidget *parent) : T line1->setFrameShadow( TQFrame::Sunken ); customFiltersLayout->add(line1); - TQHBoxLayout *customFiltersLayout2 = new TQHBoxLayout ( customFilters->tqlayout() ); + TQHBoxLayout *customFiltersLayout2 = new TQHBoxLayout ( customFilters->layout() ); VtDeblockFilter = new TQCheckBox(i18n("Vertical deblocking"), customFilters); VtDeblockAQuality = new TQCheckBox (i18n ("Auto quality"), customFilters); @@ -726,7 +726,7 @@ KDE_NO_CDTOR_EXPORT PrefOPPagePostProc::PrefOPPagePostProc(TQWidget *parent) : T line2->setFrameShadow( TQFrame::Sunken ); customFiltersLayout->add(line2); - TQHBoxLayout *customFiltersLayout3 = new TQHBoxLayout ( customFilters->tqlayout() ); + TQHBoxLayout *customFiltersLayout3 = new TQHBoxLayout ( customFilters->layout() ); DeringFilter = new TQCheckBox (i18n ("Dering filter"), customFilters); DeringAQuality = new TQCheckBox (i18n ("Auto quality"), customFilters); @@ -746,7 +746,7 @@ KDE_NO_CDTOR_EXPORT PrefOPPagePostProc::PrefOPPagePostProc(TQWidget *parent) : T customFiltersLayout->add(line3); - TQHBoxLayout *customFiltersLayout4 =new TQHBoxLayout(customFilters->tqlayout()); + TQHBoxLayout *customFiltersLayout4 =new TQHBoxLayout(customFilters->layout()); AutolevelsFilter = new TQCheckBox (i18n ("Auto brightness/contrast"), customFilters); AutolevelsFullrange = new TQCheckBox (i18n ("Stretch luminance to full range"), customFilters); @@ -756,7 +756,7 @@ KDE_NO_CDTOR_EXPORT PrefOPPagePostProc::PrefOPPagePostProc(TQWidget *parent) : T customFiltersLayout4->addItem(new TQSpacerItem( 0, 0, TQSizePolicy::Minimum, TQSizePolicy::Minimum )); customFiltersLayout4->addWidget(AutolevelsFullrange); - TQHBoxLayout *customFiltersLayout5 = new TQHBoxLayout (customFilters->tqlayout()); + TQHBoxLayout *customFiltersLayout5 = new TQHBoxLayout (customFilters->layout()); TmpNoiseFilter =new TQCheckBox(i18n("Temporal noise reducer"),customFilters); /* Note: Change TmpNoiseFilter text back to "Label:" if this slider gets reactivated |