From bfcd2736bbeaf50300952984d4ab54915360294d Mon Sep 17 00:00:00 2001
From: Darrell Anderson 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 ( It's allowed to use quotation marks for names that contain space. Filter Examples:*pattern*/
), that means that pattern relates to recursive search of directories.pattern
- means to search those files/directories that name is pattern
, recursive search goes through all subdirectories independently of the value of pattern
pattern/
- means to search all files/directories, but recursive search goes through/excludes the directories that name is pattern
\"Program Files\"
searches out those files/directories that name is Program Files
.
Note: the search term 'text
' is equivalent to '*text*
'.
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.
pattern
- means to search those files/directories that name is pattern
, recursive search goes through all subdirectories independently of the value of pattern
pattern/
- means to search all files/directories, but recursive search goes through/excludes the directories that name is pattern
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:
- *.o
- *.h *.c\?\?
- *.cpp *.h | *.moc.cpp
- * | CVS/ .svn/
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.
pattern
- means to search those files/directories that name is pattern
, recursive search goes through all subdirectories independently of the value of pattern
pattern/
- means to search all files/directories, but recursive search goes through/excludes the directories that name is pattern
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:
- *.o
- *.h *.c\?\?
- *.cpp *.h | *.tqmoc.cpp
- * | CVS/ .svn/
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.
pattern
- means to search those files/directories that name is pattern
, recursive search goes through all subdirectories independently of the value of pattern
pattern/
- means to search all files/directories, but recursive search goes through/excludes the directories that name is pattern
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:
- *.o
- *.h *.c\?\?
- *.cpp *.h | *.moc.cpp
- * | CVS/ .svn/
text
' is equivalent to '*text*
'.");
TQWhatsThis::add(fileFilter, wtFilter);
TQWhatsThis::add(filterLabel, wtFilter);