From c59fc2172b652eaf9c790f7ec53b192dd5b22a3d Mon Sep 17 00:00:00 2001 From: Charlie Whitney Date: Thu, 28 Feb 2019 22:22:13 -0500 Subject: [PATCH 1/2] Updated project to build for v141 (vc 2017) --- apps/SilverSprints/vc2017/SilverSprints.vcxproj | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/apps/SilverSprints/vc2017/SilverSprints.vcxproj b/apps/SilverSprints/vc2017/SilverSprints.vcxproj index 695565b..4c6db08 100644 --- a/apps/SilverSprints/vc2017/SilverSprints.vcxproj +++ b/apps/SilverSprints/vc2017/SilverSprints.vcxproj @@ -28,27 +28,27 @@ Application false - v140 + v141 Unicode false Application false - v140 + v141 Unicode false Application true - v140 + v141 Unicode Application true - v140 + v141 Unicode @@ -77,6 +77,10 @@ false false + + $(ProjectDir)build\$(Platform)\$(Configuration)\ + $(ProjectDir)build\$(Platform)\$(Configuration)\intermediate\ + Disabled From 90c7539f2cf8083f403584b3e3bd915549768a6d Mon Sep 17 00:00:00 2001 From: Charlie Whitney Date: Thu, 28 Feb 2019 22:22:22 -0500 Subject: [PATCH 2/2] Fixed random line commented out --- apps/Silversprints/include/ui/CiTextField.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/Silversprints/include/ui/CiTextField.h b/apps/Silversprints/include/ui/CiTextField.h index f2097e8..ff1458c 100644 --- a/apps/Silversprints/include/ui/CiTextField.h +++ b/apps/Silversprints/include/ui/CiTextField.h @@ -24,7 +24,7 @@ class CiTextField : public ci::Rectf { std::string getText(){ return mText; } void setBounds( const ci::Rectf &bounds ); -// const ci::Rectf& getBounds(){ return mBounds; } + const ci::Rectf& getBounds(){ return mBounds; } void focus( bool selectAll=false); // Become active. void blur(); // Become inactive. (Same as unfocus)