Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
OpenWalnut
OpenWalnut Core
Commits
cacea0e5
Commit
cacea0e5
authored
Dec 09, 2009
by
Mathias Goldau
Browse files
[CLEAN
#183
] Removed unused ctors and dtors
parent
b4a23f5b
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
0 additions
and
28 deletions
+0
-28
src/gui/qt4/WIconManager.cpp
src/gui/qt4/WIconManager.cpp
+0
-8
src/gui/qt4/WIconManager.h
src/gui/qt4/WIconManager.h
+0
-10
src/gui/qt4/WMainWindow.cpp
src/gui/qt4/WMainWindow.cpp
+0
-5
src/gui/qt4/WMainWindow.h
src/gui/qt4/WMainWindow.h
+0
-5
No files found.
src/gui/qt4/WIconManager.cpp
View file @
cacea0e5
...
...
@@ -27,14 +27,6 @@
#include "WIconManager.h"
WIconManager
::
WIconManager
()
{
}
WIconManager
::~
WIconManager
()
{
}
void
WIconManager
::
addIcon
(
std
::
string
name
,
const
char
*
const
xpm
[]
)
{
assert
(
(
m_iconList
.
count
(
name
)
==
0
)
);
...
...
src/gui/qt4/WIconManager.h
View file @
cacea0e5
...
...
@@ -36,16 +36,6 @@
class
WIconManager
{
public:
/**
* default constructor
*/
WIconManager
();
/**
* destructor
*/
~
WIconManager
();
/**
* function to add an Icon to the icon store
*/
...
...
src/gui/qt4/WMainWindow.cpp
View file @
cacea0e5
...
...
@@ -52,11 +52,6 @@ WMainWindow::WMainWindow( boost::program_options::variables_map guiConfiguration
setupGUI
(
guiConfiguration
);
}
WMainWindow
::~
WMainWindow
()
{
}
void
WMainWindow
::
setupGUI
(
boost
::
program_options
::
variables_map
guiConfiguration
)
{
m_iconManager
.
addIcon
(
std
::
string
(
"logo"
),
logoIcon_xpm
);
...
...
src/gui/qt4/WMainWindow.h
View file @
cacea0e5
...
...
@@ -65,11 +65,6 @@ public:
*/
void
setupGUI
(
boost
::
program_options
::
variables_map
guiConfiguration
);
/**
* Destructor.
*/
virtual
~
WMainWindow
();
/**
* returns a pointer to the dataset browser object
*/
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment