Skip to content

Commit

Permalink
split MediaUtils in MediaUtils and WordPressMediaUtils - remove refer…
Browse files Browse the repository at this point in the history
…ences to WordPress.java in MediaUtils
  • Loading branch information
maxme committed Feb 12, 2015
1 parent 0c60b07 commit 777635b
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ public abstract class EditorFragmentAbstract extends Fragment {

protected EditorFragmentListener mEditorFragmentListener;
protected boolean mFeaturedImageSupported;
protected String mBlogSettingMaxImageWidth;

@Override
public void onAttach(Activity activity) {
Expand All @@ -32,6 +33,10 @@ public void setFeaturedImageSupported(boolean featuredImageSupported) {
mFeaturedImageSupported = featuredImageSupported;
}

public void setBlogSettingMaxImageWidth(String blogSettingMaxImageWidth) {
mBlogSettingMaxImageWidth = blogSettingMaxImageWidth;
}

/**
* Called by the activity when back button is pressed.
*/
Expand Down

0 comments on commit 777635b

Please sign in to comment.