Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
OpenWalnut Core
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
44
Issues
44
List
Boards
Labels
Service Desk
Milestones
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
OpenWalnut
OpenWalnut Core
Commits
608f2de3
Commit
608f2de3
authored
Aug 17, 2017
by
Alexander Wiebel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[DOC] fixed links to old website
parent
ce8e2e7f
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
8 additions
and
8 deletions
+8
-8
src/modules/navigationSlices/resources/META
src/modules/navigationSlices/resources/META
+1
-1
src/modules/template/WMTemplate.cpp
src/modules/template/WMTemplate.cpp
+2
-2
src/modules/template/resources/META
src/modules/template/resources/META
+1
-1
src/qtgui/WApplication.cpp
src/qtgui/WApplication.cpp
+1
-1
src/qtgui/WMainWindow.cpp
src/qtgui/WMainWindow.cpp
+3
-3
No files found.
src/modules/navigationSlices/resources/META
View file @
608f2de3
...
...
@@ -82,7 +82,7 @@
// Optional description for a resource
description ="First Steps Tutorial, showing the first steps to take with OpenWalnut.";
// The URL. Required.
url="http
://redmine.openwalnut.org/projects/openwalnut/wiki
/FirstSteps";
url="http
s://bsvgit.informatik.uni-leipzig.de/openwalnut/openwalnut/wikis
/FirstSteps";
};
// Multiple online resources allowed.
online
...
...
src/modules/template/WMTemplate.cpp
View file @
608f2de3
...
...
@@ -33,7 +33,7 @@
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// How to create your own module in OpenWalnut? Here are the steps to take:
// * Setup your module building framework
// * See http
://redmine.openwalnut.org/projects/openwalnut/wiki
/Module_ExternalDevelopment for details
// * See http
s://bsvgit.informatik.uni-leipzig.de/openwalnut/openwalnut/wikis
/Module_ExternalDevelopment for details
// * copy the template module directory
// * think about a name for your module
// * rename the files from WMTemplate.cpp and WMTemplate.h to WMYourModuleName.cpp and WMYourModuleName.h
...
...
@@ -414,7 +414,7 @@ void WMTemplate::moduleMain()
// that your thread misses the event. The resettable flag for those condition sets can help here. Whenever a condition, managed by the
// condition set, fires, the moduleState variable remembers it. So, the next call to m_moduleState.wait() will immediately return and reset
// the "memory" of the moduleState. For more details, see:
// http
://redmine.openwalnut.org/projects/openwalnut/wiki/MultithreadingHowto#H
ow-to-wait-correctly
// http
s://bsvgit.informatik.uni-leipzig.de/openwalnut/openwalnut/wikis/MultithreadingHowto#h
ow-to-wait-correctly
// Most probably, your module will be a module providing some kind of visual output. In this case, the WGEManagedGroupNode is very handy.
// It allows you to insert several nodes and transform them as the WGEGroupNode (from which WGEManagedGroupNode is derived from) is also
...
...
src/modules/template/resources/META
View file @
608f2de3
...
...
@@ -157,7 +157,7 @@
// Optional description for a resource
description ="First Steps Tutorial, showing the first steps to take with OpenWalnut.";
// The URL. Required.
url="http
://redmine.openwalnut.org/projects/openwalnut/wiki
/FirstSteps";
url="http
s://bsvgit.informatik.uni-leipzig.de/openwalnut/openwalnut/wikis
/FirstSteps";
};
// Multiple online resources allowed.
online
...
...
src/qtgui/WApplication.cpp
View file @
608f2de3
...
...
@@ -33,7 +33,7 @@
#include "core/common/WException.h"
#include "core/common/WLogger.h"
#define OPENWALNUT_BUGREPORTER_URL "http
://redmine.openwalnut.org/projects
/openwalnut/issues"
#define OPENWALNUT_BUGREPORTER_URL "http
s://bsvgit.informatik.uni-leipzig.de/openwalnut
/openwalnut/issues"
WApplication
::
WApplication
(
int
&
argc
,
char
**
argv
,
bool
GUIenabled
)
// NOLINT
:
QApplication
(
argc
,
argv
,
GUIenabled
)
...
...
src/qtgui/WMainWindow.cpp
View file @
608f2de3
...
...
@@ -278,7 +278,7 @@ void WMainWindow::setupGUI()
m_permanentToolBar
=
new
WQtToolBar
(
"Standard Toolbar"
,
this
);
addToolBar
(
Qt
::
TopToolBarArea
,
m_permanentToolBar
);
// math: Due to th
is issue: http://redmine.openwalnut.org/issues/
406 resp.
// math: Due to th
e OLD issue
406 resp.
// http://stackoverflow.com/questions/31983269/how-to-identify-a-certain-qt-widget
// There might be a white box, on Apple Mac OSX only, which sometimes hides the window buttons
// for maximization, minimization and closing. This is extremely disturbing, hence, we leave them
...
...
@@ -547,7 +547,7 @@ void WMainWindow::setCompatiblesToolbar( WQtCombinerToolbar* toolbar )
m_currentCompatiblesToolbar
,
SLOT
(
setToolButtonStyle
(
Qt
::
ToolButtonStyle
)
)
);
// and the position of the toolbar
// math: Due to th
is issue: http://redmine.openwalnut.org/issues/
406 resp.
// math: Due to th
e OLD issue
406 resp.
// http://stackoverflow.com/questions/31983269/how-to-identify-a-certain-qt-widget
// There might be a white box, on Apple Mac OSX only, which sometimes hides the window buttons
// for maximization, minimization and closing. This is extremely disturbing, hence, we leave them
...
...
@@ -701,7 +701,7 @@ QString collectFilters()
result
+=
description
+
QString
(
"(*"
)
+
extension
+
QString
(
");;"
);
}
// math: on 11. Aug. 2015, related
issue: http://redmine.openwalnut.org/issues/
404
// math: on 11. Aug. 2015, related
old issues
404
// The following #ifdef is due to the following QT-Bug: https://bugreports.qt.io/browse/QTBUG-38303
// Hence, we use any file as known file type for MAC OSX only.
#ifdef Q_OS_OSX
...
...
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