Skip to content

Commit

Permalink
FIX: Cube class copy constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
editeodoro committed Nov 13, 2019
1 parent 4d611a4 commit 8a1a9a8
Show file tree
Hide file tree
Showing 7 changed files with 7,158 additions and 494 deletions.
1 change: 1 addition & 0 deletions src/Arrays/cube.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,7 @@ template Cube<double>::Cube(int*);
template <class T>
Cube<T>::Cube(const Cube<T> &c) {

defaults();
this->operator=(c);

}
Expand Down
4,422 changes: 3,935 additions & 487 deletions src/GUI/Makefile

Large diffs are not rendered by default.

32 changes: 32 additions & 0 deletions src/GUI/bbarologui_plugin_import.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
// This file is autogenerated by qmake. It imports static plugin classes for
// static plugins specified using QTPLUGIN and QT_PLUGIN_CLASS.<plugin> variables.
#include <QtPlugin>
Q_IMPORT_PLUGIN(QCupsPrinterSupportPlugin)
Q_IMPORT_PLUGIN(QWaylandEglPlatformIntegrationPlugin)
Q_IMPORT_PLUGIN(QWaylandIntegrationPlugin)
Q_IMPORT_PLUGIN(QWaylandXCompositeEglPlatformIntegrationPlugin)
Q_IMPORT_PLUGIN(QWaylandXCompositeGlxPlatformIntegrationPlugin)
Q_IMPORT_PLUGIN(QXcbIntegrationPlugin)
Q_IMPORT_PLUGIN(QXcbEglIntegrationPlugin)
Q_IMPORT_PLUGIN(QXcbGlxIntegrationPlugin)
Q_IMPORT_PLUGIN(QGifPlugin)
Q_IMPORT_PLUGIN(QICNSPlugin)
Q_IMPORT_PLUGIN(QICOPlugin)
Q_IMPORT_PLUGIN(QJp2Plugin)
Q_IMPORT_PLUGIN(QJpegPlugin)
Q_IMPORT_PLUGIN(QMngPlugin)
Q_IMPORT_PLUGIN(QTgaPlugin)
Q_IMPORT_PLUGIN(QTiffPlugin)
Q_IMPORT_PLUGIN(QWbmpPlugin)
Q_IMPORT_PLUGIN(QWebpPlugin)
Q_IMPORT_PLUGIN(QEglFSEmulatorIntegrationPlugin)
Q_IMPORT_PLUGIN(QEglFSKmsEglDeviceIntegrationPlugin)
Q_IMPORT_PLUGIN(QEglFSKmsGbmIntegrationPlugin)
Q_IMPORT_PLUGIN(QEglFSX11IntegrationPlugin)
Q_IMPORT_PLUGIN(QWaylandBradientDecorationPlugin)
Q_IMPORT_PLUGIN(QWaylandFullScreenShellV1IntegrationPlugin)
Q_IMPORT_PLUGIN(QWaylandIviShellIntegrationPlugin)
Q_IMPORT_PLUGIN(QWaylandWlShellIntegrationPlugin)
Q_IMPORT_PLUGIN(QWaylandXdgShellV5IntegrationPlugin)
Q_IMPORT_PLUGIN(QWaylandXdgShellV6IntegrationPlugin)
Q_IMPORT_PLUGIN(QWaylandXdgShellIntegrationPlugin)
Loading

0 comments on commit 8a1a9a8

Please sign in to comment.