From bfcd2736bbeaf50300952984d4ab54915360294d Mon Sep 17 00:00:00 2001 From: Darrell Anderson Date: Sun, 21 Oct 2012 12:56:58 -0500 Subject: [PATCH] Fix inadvertent tqt changes. (cherry picked from commit 61933b09acc5a4654d60e929689b73d3cf7f3bd7) --- krusader/Filter/generalfilter.cpp | 2 +- krusader/Konfigurator/kggeneral.cpp | 2 +- krusader/Panel/krbriefview.cpp | 2 +- krusader/Panel/krdetailedview.cpp | 2 +- krusader/Panel/krviewitem.cpp | 2 +- krusader/Synchronizer/synchronizergui.cpp | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/krusader/Filter/generalfilter.cpp b/krusader/Filter/generalfilter.cpp index 9d6ff81..28b1170 100644 --- a/krusader/Filter/generalfilter.cpp +++ b/krusader/Filter/generalfilter.cpp @@ -78,7 +78,7 @@ GeneralFilter::GeneralFilter( FilterTabs *tabs, int properties, TQWidget *parent searchForLabel->setBuddy( searchFor ); nameGroupLayout->addMultiCellWidget( searchFor, 0, 0, 1, 2 ); - TQString s = "

" + i18n("

The filename filtering criteria is defined here.

You can make use of wildcards. Multiple patterns are separated by space (means logical OR) and patterns are excluded from the search using the pipe symbol.

If the pattern is ended with a slash (*pattern*/), that means that pattern relates to recursive search of directories.

It's allowed to use quotation marks for names that contain space. Filter \"Program Files\" searches out those files/directories that name is Program Files.

Examples:

Note: the search term 'text' is equivalent to '*text*'.

"); + TQString s = "

" + i18n("

The filename filtering criteria is defined here.

You can make use of wildcards. Multiple patterns are separated by space (means logical OR) and patterns are excluded from the search using the pipe symbol.

If the pattern is ended with a slash (*pattern*/), that means that pattern relates to recursive search of directories.

It's allowed to use quotation marks for names that contain space. Filter \"Program Files\" searches out those files/directories that name is Program Files.

Examples:

Note: the search term 'text' is equivalent to '*text*'.

"); TQWhatsThis::add(searchFor, s); TQWhatsThis::add(searchForLabel, s); diff --git a/krusader/Konfigurator/kggeneral.cpp b/krusader/Konfigurator/kggeneral.cpp index 5087580..0c40482 100644 --- a/krusader/Konfigurator/kggeneral.cpp +++ b/krusader/Konfigurator/kggeneral.cpp @@ -131,7 +131,7 @@ TQFrame *line2 = createLine( generalGrp, "line2" ); TQStringList defaultAtomicExtensions; defaultAtomicExtensions += ".tar.gz"; defaultAtomicExtensions += ".tar.bz2"; - defaultAtomicExtensions += ".tqmoc.cpp"; + defaultAtomicExtensions += ".moc.cpp"; listBox = createListBox( "Look&Feel", "Atomic Extensions", defaultAtomicExtensions, vbox2, true, false ); diff --git a/krusader/Panel/krbriefview.cpp b/krusader/Panel/krbriefview.cpp index 1c27c41..ae0ca76 100644 --- a/krusader/Panel/krbriefview.cpp +++ b/krusader/Panel/krbriefview.cpp @@ -1318,7 +1318,7 @@ void KrBriefView::initProperties() { TQStringList defaultAtomicExtensions; defaultAtomicExtensions += ".tar.gz"; defaultAtomicExtensions += ".tar.bz2"; - defaultAtomicExtensions += ".tqmoc.cpp"; + defaultAtomicExtensions += ".moc.cpp"; TQStringList atomicExtensions = krConfig->readListEntry("Atomic Extensions", defaultAtomicExtensions); for (TQStringList::iterator i = atomicExtensions.begin(); i != atomicExtensions.end(); ) { diff --git a/krusader/Panel/krdetailedview.cpp b/krusader/Panel/krdetailedview.cpp index 84c0190..bd5636a 100644 --- a/krusader/Panel/krdetailedview.cpp +++ b/krusader/Panel/krdetailedview.cpp @@ -1413,7 +1413,7 @@ void KrDetailedView::initProperties() { TQStringList defaultAtomicExtensions; defaultAtomicExtensions += ".tar.gz"; defaultAtomicExtensions += ".tar.bz2"; - defaultAtomicExtensions += ".tqmoc.cpp"; + defaultAtomicExtensions += ".moc.cpp"; TQStringList atomicExtensions = krConfig->readListEntry("Atomic Extensions", defaultAtomicExtensions); for (TQStringList::iterator i = atomicExtensions.begin(); i != atomicExtensions.end(); ) { diff --git a/krusader/Panel/krviewitem.cpp b/krusader/Panel/krviewitem.cpp index 158c173..96e9a02 100644 --- a/krusader/Panel/krviewitem.cpp +++ b/krusader/Panel/krviewitem.cpp @@ -11,7 +11,7 @@ TQString atomicExtensions[] = { ".tar.gz", ".tar.bz2", - ".tqmoc.cpp" + ".moc.cpp" }; KrViewItem::KrViewItem(vfile *vf, const KrViewProperties* properties): diff --git a/krusader/Synchronizer/synchronizergui.cpp b/krusader/Synchronizer/synchronizergui.cpp index acb4c12..9961be9 100755 --- a/krusader/Synchronizer/synchronizergui.cpp +++ b/krusader/Synchronizer/synchronizergui.cpp @@ -1162,7 +1162,7 @@ void SynchronizerGUI::initGUI(TQWidget* /* parent */, TQString profileName, KURL grid->addWidget( fileFilter, 1 ,1 ); filterLabel->setBuddy( fileFilter ); - TQString wtFilter = "

" + i18n("

The filename filtering criteria is defined here.

You can make use of wildcards. Multiple patterns are separated by space (means logical OR) and patterns are excluded from the search using the pipe symbol.

If the pattern is ended with a slash (*pattern*/), that means that pattern relates to recursive search of directories.

It's allowed to use quotation marks for names that contain space. Filter \"Program Files\" searches out those files/directories that name is Program Files.

Examples:

Note: the search term 'text' is equivalent to '*text*'.

"); + TQString wtFilter = "

" + i18n("

The filename filtering criteria is defined here.

You can make use of wildcards. Multiple patterns are separated by space (means logical OR) and patterns are excluded from the search using the pipe symbol.

If the pattern is ended with a slash (*pattern*/), that means that pattern relates to recursive search of directories.

It's allowed to use quotation marks for names that contain space. Filter \"Program Files\" searches out those files/directories that name is Program Files.

Examples:

Note: the search term 'text' is equivalent to '*text*'.

"); TQWhatsThis::add(fileFilter, wtFilter); TQWhatsThis::add(filterLabel, wtFilter);