Skip to content

Commit

Permalink
Update example version numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
vurtun committed Aug 7, 2016
1 parent f50f836 commit 4b910e0
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion example/canvas.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* nuklear - v1.00 - public domain */
/* nuklear - v1.05 - public domain */
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
Expand Down
6 changes: 3 additions & 3 deletions example/extended.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* nuklear - v1.00 - public domain */
/* nuklear - v1.05 - public domain */
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
Expand Down Expand Up @@ -209,7 +209,7 @@ grid_demo(struct nk_context *ctx, struct media *media)
nk_label(ctx, "Combobox:", NK_TEXT_RIGHT);

if (nk_combo_begin_label(ctx, &combo, items[selected_item], 200)) {
nk_layout_row_dynamic(ctx, 30, 1);
nk_layout_row_dynamic(ctx, 25, 1);
for (i = 0; i < 3; ++i)
if (nk_combo_item_label(ctx, items[i], NK_TEXT_LEFT))
selected_item = i;
Expand Down Expand Up @@ -870,7 +870,7 @@ int main(int argc, char *argv[])
/* Draw */
glViewport(0, 0, display_width, display_height);
glClear(GL_COLOR_BUFFER_BIT);
glClearColor(0.2f, 0.2f, 0.2f, 1.0f);
glClearColor(1.0f, 1.0f, 1.0f, 1.0f);
device_draw(&device, &ctx, width, height, scale, NK_ANTI_ALIASING_ON);
glfwSwapBuffers(win);
}
Expand Down
2 changes: 1 addition & 1 deletion example/file_browser.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* nuklear - v1.00 - public domain */
/* nuklear - v1.05 - public domain */
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
Expand Down
2 changes: 1 addition & 1 deletion example/skinning.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* nuklear - v1.00 - public domain */
/* nuklear - v1.05 - public domain */
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
Expand Down

0 comments on commit 4b910e0

Please sign in to comment.