cf12defd28
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
15 lines
223 B
C++
15 lines
223 B
C++
#include <QApplication>
|
|
#include <kiconbutton.h>
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
QApplication app(argc, argv);
|
|
|
|
// KIconDialog::getIcon();
|
|
|
|
KIconButton button;
|
|
button.show();
|
|
|
|
return app.exec();
|
|
}
|