data: renamed log window in window settings for package

* also: added spaces in tutorial project
This commit is contained in:
malte_langkabel
2016-12-13 12:29:42 +01:00
parent 7201a4143d
commit 0bf1145a77
19 changed files with 38 additions and 3 deletions
@@ -2,6 +2,7 @@
#define CODE_TUTORIAL_1_H
#include "utility.h"
//------------------------------------------------------------------------------
@@ -29,5 +30,6 @@ public:
};
#endif // CODE_TUTORIAL_1_H
@@ -2,6 +2,7 @@
#define CODE_TUTORIAL_2_H
#include "code_tutorial_1.h"
//------------------------------------------------------------------------------
@@ -59,5 +60,6 @@ void deep_thought()
}
#endif // CODE_TUTORIAL_2_H
@@ -2,6 +2,7 @@
#define CODE_TUTORIAL_3_H
#include "the_central_hub.h"
#include "code_tutorial_2.h"
@@ -61,5 +62,6 @@ void function_with_snippets()
};
#endif // CODE_TUTORIAL_3_H
@@ -2,6 +2,7 @@
#define GRAPH_TUTORIAL_1_H
#include "utility.h"
//------------------------------------------------------------------------------
@@ -33,5 +34,6 @@ public:
};
#endif // GRAPH_TUTORIAL_1_H
@@ -2,6 +2,7 @@
#define GRAPH_TUTORIAL_2_H
#include "graph_tutorial_1.h"
//------------------------------------------------------------------------------
@@ -62,5 +63,6 @@ public:
};
#endif // GRAPH_TUTORIAL_2_H
@@ -2,6 +2,7 @@
#define GRAPH_TUTORIAL_3_H
#include "graph_tutorial_2.h"
class ProducerOfTheLastMember
@@ -35,5 +36,6 @@ public:
};
#endif // GRAPH_TUTORIAL_3_H
@@ -2,6 +2,7 @@
#define GRAPH_TUTORIAL_4_H
#include "graph_tutorial_2.h"
#include "the_central_hub.h"
@@ -45,5 +46,6 @@ private:
};
#endif // GRAPH_TUTORIAL_4_H
@@ -2,6 +2,7 @@
#define MAIN_H
#include "code_tutorial_1.h"
#include "code_tutorial_2.h"
#include "code_tutorial_3.h"
@@ -37,5 +38,6 @@ int main()
}
#endif // MAIN_H
@@ -2,6 +2,7 @@
#define MY_FIRST_STEP_H
#include "my_next_step.h"
//------------------------------------------------------------------------------
@@ -30,5 +31,6 @@ void my_first_step()
}
#endif // MY_FIRST_STEP_H
@@ -2,6 +2,7 @@
#define MY_NEXT_STEP_H
#include "the_central_hub.h"
//------------------------------------------------------------------------------
@@ -35,5 +36,6 @@ int my_next_step(int foo)
}
#endif // MY_NEXT_STEP_H
@@ -2,6 +2,7 @@
#define SEARCH_TUTORIAL_1_H
#include "utility.h"
//------------------------------------------------------------------------------
@@ -26,5 +27,6 @@ public:
};
#endif // SEARCH_TUTORIAL_1_H
@@ -2,6 +2,7 @@
#define SEARCH_TUTORIAL_2_H
#include "utility.h"
//------------------------------------------------------------------------------
@@ -21,5 +22,6 @@ void find_me_if_you_can()
}
#endif // SEARCH_TUTORIAL_2_H
@@ -2,6 +2,7 @@
#define SEARCH_TUTORIAL_3_H
#include "utility.h"
//------------------------------------------------------------------------------
@@ -22,5 +23,6 @@ void autocompletion_example()
}
#endif // SEARCH_TUTORIAL_3_H
@@ -2,6 +2,7 @@
#define SEARCH_TUTORIAL_4_H
#include "utility.h"
//------------------------------------------------------------------------------
@@ -17,8 +18,7 @@
//
// 6 - REFRESH
// The next button allows you to refresh the project in case you changed some
// of your code. The second button toggels the auto-refresh option. When
// enabled Coati refreshes your project every time it's window gets focused.
// of your code.
//
// 7 - HOME
// This last button takes you back to the initial overview screen.
@@ -36,5 +36,6 @@ namespace a
}
#endif // SEARCH_TUTORIAL_4_H
@@ -2,6 +2,7 @@
#define SEARCH_TUTORIAL_5_H
#include "utility.h"
//------------------------------------------------------------------------------
@@ -23,5 +24,6 @@ namespace b
}
#endif // SEARCH_TUTORIAL_5_H
@@ -2,6 +2,7 @@
#define START_EXPLORING_H
#include "utility.h"
//------------------------------------------------------------------------------
@@ -29,5 +30,6 @@ public:
};
#endif // START_EXPLORING_H
@@ -2,6 +2,7 @@
#define THE_CENTRAL_HUB_H
#include "search_tutorial_1.h"
#include "graph_tutorial_1.h"
#include "code_tutorial_1.h"
@@ -28,5 +29,6 @@ void the_central_hub()
}
#endif // THE_CENTRAL_HUB_H
@@ -2,7 +2,9 @@
#define UTILITY_H
typedef unsigned int uint;
#endif // UTILITY_H