diff --git a/build/codeblocks/nana.cbp b/build/codeblocks/nana.cbp
index f1f9e7ab..ba8b6212 100644
--- a/build/codeblocks/nana.cbp
+++ b/build/codeblocks/nana.cbp
@@ -96,6 +96,7 @@
+
diff --git a/build/vc2013/nana.vcxproj b/build/vc2013/nana.vcxproj
index 52a1cecc..f246c02d 100644
--- a/build/vc2013/nana.vcxproj
+++ b/build/vc2013/nana.vcxproj
@@ -232,6 +232,7 @@
+
diff --git a/build/vc2013/nana.vcxproj.filters b/build/vc2013/nana.vcxproj.filters
index dc91e15d..29308753 100644
--- a/build/vc2013/nana.vcxproj.filters
+++ b/build/vc2013/nana.vcxproj.filters
@@ -327,6 +327,9 @@
Source Files\nana
+
+ Source Files\nana\gui\widgets\skeletons
+
diff --git a/build/vc2015/nana.vcxproj b/build/vc2015/nana.vcxproj
index 9eca39ce..718f7214 100644
--- a/build/vc2015/nana.vcxproj
+++ b/build/vc2015/nana.vcxproj
@@ -226,6 +226,7 @@
+
diff --git a/build/vc2015/nana.vcxproj.filters b/build/vc2015/nana.vcxproj.filters
index 54c12373..722890b2 100644
--- a/build/vc2015/nana.vcxproj.filters
+++ b/build/vc2015/nana.vcxproj.filters
@@ -285,5 +285,8 @@
Source Files
+
+ Source Files\gui\widgets\skeletons
+
\ No newline at end of file
diff --git a/include/nana/gui/widgets/listbox.hpp b/include/nana/gui/widgets/listbox.hpp
index b2a8bcf1..d6d13e4c 100644
--- a/include/nana/gui/widgets/listbox.hpp
+++ b/include/nana/gui/widgets/listbox.hpp
@@ -805,7 +805,7 @@ namespace nana
: public std::iterator
{
public:
- item_proxy(essence*, const index_pair& = index_pair{});
+ item_proxy(essence*, const index_pair& = index_pair{npos, npos});
/// the main porpose of this it to make obvious that item_proxy operate with absolute positions, and dont get moved during sort()
static item_proxy from_display(essence *, const index_pair &relative) ;
diff --git a/include/nana/stdc++.hpp b/include/nana/stdc++.hpp
index 7784d593..4d8bbef9 100644
--- a/include/nana/stdc++.hpp
+++ b/include/nana/stdc++.hpp
@@ -125,6 +125,7 @@ namespace std {
#ifdef _enable_std_put_time
#include
+#include
namespace std
{
//Workaround for no implemenation of std::put_time in gcc < 5.
diff --git a/source/gui/widgets/listbox.cpp b/source/gui/widgets/listbox.cpp
index ad52db59..9feac440 100644
--- a/source/gui/widgets/listbox.cpp
+++ b/source/gui/widgets/listbox.cpp
@@ -19,7 +19,6 @@
*/
#include
-#include
#include //for inline widget
#include
@@ -27,11 +26,12 @@
#include
#include
#include
+#include "skeletons/content_view.hpp"
+#include
#include
#include
#include
-#include
#include