ultimatepp/uppdev/FileSel/main.cpp
cxl bd824348f2 CtrlLib: ColumnList fixed non-multi with shift+cursors, ide: Ctrl+O now multi
git-svn-id: svn://ultimatepp.org/upp/trunk@6604 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2013-11-25 12:57:48 +00:00

16 lines
238 B
C++

#include <CtrlLib/CtrlLib.h>
using namespace Upp;
GUI_APP_MAIN
{
SetDefaultCharset(CHARSET_UTF8);
FileSel fs;
String fn;
fs.AllFilesType();
for(;;) {
if(!fs.ExecuteSaveAs())
break;
PromptOK(DeQtf(~fs));
}
}