Skip to content

Commit

Permalink
Merge pull request #3 from gsouf/master
Browse files Browse the repository at this point in the history
Use zephir icon instead of phalcon
  • Loading branch information
Nikita Gusakov committed May 15, 2015
2 parents 9f4103d + 953eab3 commit d483961
Show file tree
Hide file tree
Showing 8 changed files with 4 additions and 4 deletions.
Binary file removed resources/icons/phalcon.png
Binary file not shown.
Binary file removed resources/icons/[email protected]
Binary file not shown.
Binary file added resources/icons/zephir.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added resources/icons/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/com/zephir/ZephirFileType.java
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,6 @@ public String getDefaultExtension() {
@Nullable
@Override
public Icon getIcon() {
return ZephirIcons.PHALCON;
return ZephirIcons.ZEPHIR;
}
}
2 changes: 1 addition & 1 deletion src/com/zephir/ZephirIcons.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@
* @author Nikita Gusakov
*/
public interface ZephirIcons {
public static final Icon PHALCON = IconLoader.getIcon("/icons/phalcon.png");
public static final Icon ZEPHIR = IconLoader.getIcon("/icons/zephir.png");
}
2 changes: 1 addition & 1 deletion src/com/zephir/actions/ZephirNewClassAction.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
public class ZephirNewClassAction extends CreateFileFromTemplateAction {

public ZephirNewClassAction() {
super("Zephir Class", "Create new Zephir file", ZephirIcons.PHALCON);
super("Zephir Class", "Create new Zephir file", ZephirIcons.ZEPHIR);
}

@Override
Expand Down
2 changes: 1 addition & 1 deletion src/com/zephir/highlight/ZephirColorSettingsPage.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public class ZephirColorSettingsPage implements ColorSettingsPage {
@Nullable
@Override
public Icon getIcon() {
return ZephirIcons.PHALCON;
return ZephirIcons.ZEPHIR;
}

@NotNull
Expand Down

0 comments on commit d483961

Please sign in to comment.