mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-17 22:03:07 -06:00
16 lines
238 B
C++
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));
|
|
}
|
|
}
|