You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdelibs/tdeio/tdefile/tests/kcustommenueditortest.cpp

20 lines
420 B

#include "kcustommenueditor.h"
#include <kapplication.h>
#include <klocale.h>
#include <tdeconfig.h>
int main(int argc, char** argv)
{
TDELocale::setMainCatalogue("tdelibs");
TDEApplication app(argc, argv, "KCustomMenuEditorTest");
KCustomMenuEditor editor(0);
TDEConfig *cfg = new TDEConfig("kdesktop_custom_menu2");
editor.load(cfg);
if (editor.exec())
{
editor.save(cfg);
cfg->sync();
}
}