Added template arg.

This commit is contained in:
Mostafa-ashraf19 2022-10-08 12:34:46 +02:00
parent 7e1e6d5266
commit 0e2586f83d
1 changed files with 1 additions and 1 deletions

View File

@ -1740,7 +1740,7 @@ void draw_buffer(Graphic_buffer<BufferType> &graphic_buffer) {
const char *argv[2] = {"lccviewer", nullptr};
QApplication app(argc, const_cast<char **>(argv));
Basic_viewer_qt<float> basic_viewer(app.activeWindow(), graphic_buffer);
Basic_viewer_qt<BufferType> basic_viewer(app.activeWindow(), graphic_buffer);
basic_viewer.show();
app.exec();