Skip to content

Commit

Permalink
[drape] rebase fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ExMix authored and r.kuznetsov committed Nov 30, 2015
1 parent 5a2338b commit 6bb2c18
Show file tree
Hide file tree
Showing 205 changed files with 785 additions and 22,002 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ bada/Maps/*.zip
# data
data/intermediate_data
data/**/*.mwm
data/**/*.offsets
!data/World.mwm
!data/WorldCoasts.mwm
# temporary files for downloader
Expand Down
12 changes: 6 additions & 6 deletions android/jni/com/mapswithme/maps/Framework.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1321,8 +1321,7 @@ extern "C"
JNIEXPORT void JNICALL
Java_com_mapswithme_maps_Framework_nativeSetRouter(JNIEnv * env, jclass thiz, jint routerType)
{
routing::RouterType const val = static_cast<routing::RouterType>(routerType);
android::Platform::RunOnGuiThreadImpl(bind(&android::Framework::SetRouter, g_framework, val));
g_framework->SetRouter(static_cast<routing::RouterType>(routerType));
}

JNIEXPORT jint JNICALL
Expand Down Expand Up @@ -1358,10 +1357,11 @@ extern "C"
JNIEXPORT void JNICALL
Java_com_mapswithme_maps_Framework_setWidgetPivot(JNIEnv * env, jclass thiz, jint widget, jint pivotX, jint pivotY)
{
using WidgetType = InformationDisplay::WidgetType;
WidgetType const widgetType = static_cast<WidgetType>(widget);
m2::PointD const pivot = m2::PointD(pivotX, pivotY);
android::Platform::RunOnGuiThreadImpl(bind(&Framework::SetWidgetPivot, frm(), widgetType, pivot));
//TODO (UVR)
// using WidgetType = InformationDisplay::WidgetType;
// WidgetType const widgetType = static_cast<WidgetType>(widget);
// m2::PointD const pivot = m2::PointD(pivotX, pivotY);
// android::Platform::RunOnGuiThreadImpl(bind(&Framework::SetWidgetPivot, frm(), widgetType, pivot));
}

JNIEXPORT void JNICALL
Expand Down
97 changes: 0 additions & 97 deletions anim/angle_interpolation.cpp

This file was deleted.

48 changes: 0 additions & 48 deletions anim/angle_interpolation.hpp

This file was deleted.

25 changes: 0 additions & 25 deletions anim/anim.pro

This file was deleted.

122 changes: 0 additions & 122 deletions anim/anyrect_interpolation.cpp

This file was deleted.

46 changes: 0 additions & 46 deletions anim/anyrect_interpolation.hpp

This file was deleted.

Loading

0 comments on commit 6bb2c18

Please sign in to comment.