diff --git a/twidere/src/.google.commit-id b/twidere/src/.google.commit-id index c8ceadfab..3899e14ee 100644 --- a/twidere/src/.google.commit-id +++ b/twidere/src/.google.commit-id @@ -1 +1 @@ -541542795b5b0b81f05a93400d7099cc877d2c84 +e996a88227d4a77ebe6739b7286d744f2023e398 diff --git a/twidere/src/main/kotlin/org/mariotaku/twidere/activity/content/RetweetQuoteDialogActivity.kt b/twidere/src/main/kotlin/org/mariotaku/twidere/activity/content/RetweetQuoteDialogActivity.kt index 57cdf1bce..1ef4f638f 100644 --- a/twidere/src/main/kotlin/org/mariotaku/twidere/activity/content/RetweetQuoteDialogActivity.kt +++ b/twidere/src/main/kotlin/org/mariotaku/twidere/activity/content/RetweetQuoteDialogActivity.kt @@ -22,7 +22,7 @@ package org.mariotaku.twidere.activity.content import android.os.Bundle import org.mariotaku.twidere.activity.BaseActivity import org.mariotaku.twidere.constant.IntentConstants.* -import org.mariotaku.twidere.fragment.RetweetQuoteDialogFragment +import org.mariotaku.twidere.fragment.content.RetweetQuoteDialogFragment import org.mariotaku.twidere.model.ParcelableStatus import org.mariotaku.twidere.model.UserKey diff --git a/twidere/src/main/kotlin/org/mariotaku/twidere/fragment/AbsActivitiesFragment.kt b/twidere/src/main/kotlin/org/mariotaku/twidere/fragment/AbsActivitiesFragment.kt index be6257dab..d3d072c35 100644 --- a/twidere/src/main/kotlin/org/mariotaku/twidere/fragment/AbsActivitiesFragment.kt +++ b/twidere/src/main/kotlin/org/mariotaku/twidere/fragment/AbsActivitiesFragment.kt @@ -59,6 +59,7 @@ import org.mariotaku.twidere.constant.rememberPositionKey import org.mariotaku.twidere.extension.model.getAccountType import org.mariotaku.twidere.extension.model.id import org.mariotaku.twidere.fragment.AbsStatusesFragment.DefaultOnLikedListener +import org.mariotaku.twidere.fragment.content.RetweetQuoteDialogFragment import org.mariotaku.twidere.loader.iface.IExtendedLoader import org.mariotaku.twidere.model.* import org.mariotaku.twidere.model.analyzer.Share diff --git a/twidere/src/main/kotlin/org/mariotaku/twidere/fragment/AbsStatusesFragment.kt b/twidere/src/main/kotlin/org/mariotaku/twidere/fragment/AbsStatusesFragment.kt index e1fc25fd0..8dc1affa7 100644 --- a/twidere/src/main/kotlin/org/mariotaku/twidere/fragment/AbsStatusesFragment.kt +++ b/twidere/src/main/kotlin/org/mariotaku/twidere/fragment/AbsStatusesFragment.kt @@ -53,6 +53,7 @@ import org.mariotaku.twidere.constant.newDocumentApiKey import org.mariotaku.twidere.constant.readFromBottomKey import org.mariotaku.twidere.constant.rememberPositionKey import org.mariotaku.twidere.extension.model.getAccountType +import org.mariotaku.twidere.fragment.content.RetweetQuoteDialogFragment import org.mariotaku.twidere.graphic.like.LikeAnimationDrawable import org.mariotaku.twidere.loader.iface.IExtendedLoader import org.mariotaku.twidere.model.* diff --git a/twidere/src/main/kotlin/org/mariotaku/twidere/fragment/StatusFragment.kt b/twidere/src/main/kotlin/org/mariotaku/twidere/fragment/StatusFragment.kt index b2ae2e4f4..b773c7600 100644 --- a/twidere/src/main/kotlin/org/mariotaku/twidere/fragment/StatusFragment.kt +++ b/twidere/src/main/kotlin/org/mariotaku/twidere/fragment/StatusFragment.kt @@ -94,6 +94,7 @@ import org.mariotaku.twidere.extension.model.getAccountType import org.mariotaku.twidere.extension.model.media_type import org.mariotaku.twidere.extension.view.calculateSpaceItemHeight import org.mariotaku.twidere.fragment.AbsStatusesFragment.Companion.handleActionClick +import org.mariotaku.twidere.fragment.content.RetweetQuoteDialogFragment import org.mariotaku.twidere.loader.ConversationLoader import org.mariotaku.twidere.loader.ParcelableStatusLoader import org.mariotaku.twidere.menu.FavoriteItemProvider diff --git a/twidere/src/main/kotlin/org/mariotaku/twidere/fragment/RetweetQuoteDialogFragment.kt b/twidere/src/main/kotlin/org/mariotaku/twidere/fragment/content/RetweetQuoteDialogFragment.kt similarity index 98% rename from twidere/src/main/kotlin/org/mariotaku/twidere/fragment/RetweetQuoteDialogFragment.kt rename to twidere/src/main/kotlin/org/mariotaku/twidere/fragment/content/RetweetQuoteDialogFragment.kt index 8785de328..4bd2c6330 100644 --- a/twidere/src/main/kotlin/org/mariotaku/twidere/fragment/RetweetQuoteDialogFragment.kt +++ b/twidere/src/main/kotlin/org/mariotaku/twidere/fragment/content/RetweetQuoteDialogFragment.kt @@ -1,7 +1,7 @@ /* - * Twidere - Twitter client for Android + * Twidere - Twitter client for Android * - * Copyright (C) 2012-2014 Mariotaku Lee + * Copyright (C) 2012-2017 Mariotaku Lee * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -17,7 +17,7 @@ * along with this program. If not, see . */ -package org.mariotaku.twidere.fragment +package org.mariotaku.twidere.fragment.content import android.accounts.AccountManager import android.app.Dialog @@ -47,6 +47,7 @@ import org.mariotaku.twidere.constant.IntentConstants.* import org.mariotaku.twidere.constant.SharedPreferenceConstants.KEY_QUICK_SEND import org.mariotaku.twidere.extension.applyTheme import org.mariotaku.twidere.extension.model.textLimit +import org.mariotaku.twidere.fragment.BaseDialogFragment import org.mariotaku.twidere.model.* import org.mariotaku.twidere.model.draft.QuoteStatusActionExtras import org.mariotaku.twidere.model.util.AccountUtils