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.
20 lines
424 B
20 lines
424 B
#include "kcustommenueditor.h"
|
|
#include <tdeapplication.h>
|
|
#include <tdelocale.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();
|
|
}
|
|
}
|
|
|