Commit fc66e673529d1efdf9a91b7ac91774b48f2435e0
1 parent
59f4f735
Remove dependency on boost
Change-Id: I820263d4ae6973dd0a28bffb278de3b422c804ce
Showing
5 changed files
with
1 additions
and
8 deletions
builder/dali-builder.cpp
examples/blocks/blocks-example.cpp
examples/builder/examples.cpp
| ... | ... | @@ -30,12 +30,10 @@ |
| 30 | 30 | #include <fstream> |
| 31 | 31 | #include <streambuf> |
| 32 | 32 | #include <sstream> |
| 33 | -#include <boost/scoped_ptr.hpp> | |
| 34 | 33 | #include <dirent.h> |
| 35 | 34 | #include <stdio.h> |
| 36 | 35 | #include <iostream> |
| 37 | 36 | |
| 38 | -//#include <boost/regex.hpp> | |
| 39 | 37 | #include "sys/stat.h" |
| 40 | 38 | #include <ctime> |
| 41 | 39 | ... | ... |
examples/new-window/new-window-example.cpp
| ... | ... | @@ -182,7 +182,7 @@ void NewWindowController::Destroy( Application& app ) |
| 182 | 182 | bool NewWindowController::OnLoseContextButtonClicked( Toolkit::Button button ) |
| 183 | 183 | { |
| 184 | 184 | // Add as an idle callback to avoid ProcessEvents being recursively called. |
| 185 | - mApplication.AddIdle(NewWindowController::NewWindow); | |
| 185 | + mApplication.AddIdle( MakeCallback( NewWindowController::NewWindow ) ); | |
| 186 | 186 | return true; |
| 187 | 187 | } |
| 188 | 188 | ... | ... |
packaging/com.samsung.dali-demo.spec
| ... | ... | @@ -15,7 +15,6 @@ Requires: dali |
| 15 | 15 | Requires: dali-adaptor |
| 16 | 16 | Requires: dali-toolkit |
| 17 | 17 | BuildRequires: cmake |
| 18 | -BuildRequires: boost-devel | |
| 19 | 18 | BuildRequires: pkgconfig |
| 20 | 19 | BuildRequires: pkgconfig(capi-appfw-application) |
| 21 | 20 | BuildRequires: pkgconfig(capi-media-player) | ... | ... |