summaryrefslogtreecommitdiff
path: root/libopie/ofileselector.cpp
Unidiff
Diffstat (limited to 'libopie/ofileselector.cpp') (more/less context) (show whitespace changes)
-rw-r--r--libopie/ofileselector.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/libopie/ofileselector.cpp b/libopie/ofileselector.cpp
index 9afe9c7..9ac2981 100644
--- a/libopie/ofileselector.cpp
+++ b/libopie/ofileselector.cpp
@@ -629,28 +629,28 @@ void OFileViewFileSystem::activate( const QString& str) {
629 629
630/* Selector */ 630/* Selector */
631/** 631/**
632 * @short new and complete c'tor 632 * @short new and complete c'tor
633 * 633 *
634 * Create a OFileSelector to let the user select a file. It can 634 * Create a OFileSelector to let the user select a file. It can
635 * either be used to open a file, select a save name in a dir or 635 * either be used to open a file, select a save name in a dir or
636 * as a dropin for the FileSelector. 636 * as a dropin for the FileSelector.
637 * 637 *
638 * <pre> 638 * <pre>
639 * QMap<QString, QStringList> mimeTypes; 639 * QMap<QString, QStringList> mimeTypes;
640 * QStringList types; 640 * QStringList types;
641 * types << "text[slash]* "; 641 * types << "text@slash* ";
642 * types << "audio[slash]*"; 642 * types << "audio@slash*";
643 * mimeTypes.insert( tr("Audio and Text"), types ); 643 * mimeTypes.insert( tr("Audio and Text"), types );
644 * mimeTypes.insert( tr("All"), "*[slash]*); 644 * mimeTypes.insert( tr("All"), "*@slash*);
645 * 645 *
646 * now you could create your fileselector 646 * now you could create your fileselector
647 * </pre> 647 * </pre>
648 * 648 *
649 * 649 *
650 * @param parent the parent of this widget 650 * @param parent the parent of this widget
651 * @param mode The mode from the enum Mode (Open,Save,FILESELECTOR) 651 * @param mode The mode from the enum Mode (Open,Save,FILESELECTOR)
652 * @param sel The selector to be used 652 * @param sel The selector to be used
653 * @param dirName The name of the dir to start int 653 * @param dirName The name of the dir to start int
654 * @param fileName The fileName placed in the fileselector lineedit 654 * @param fileName The fileName placed in the fileselector lineedit
655 * @param mimetypes The MimeType map of used mimetypes 655 * @param mimetypes The MimeType map of used mimetypes
656 * @param showNew Show a New Button. Most likely to be used in the FileSelector view. 656 * @param showNew Show a New Button. Most likely to be used in the FileSelector view.