Skip to content

Commit

Permalink
Issue #152 closed by commit the changes to Preferences.java
Browse files Browse the repository at this point in the history
Former-commit-id: 5ba2ccd
  • Loading branch information
ricklon committed Dec 11, 2011
1 parent 3aeb26f commit c0a5a99
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions app/src/processing/app/Preferences.java
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ static protected void init(String commandLinePrefs) {
load(Base.getLibStream("preferences.txt"));
} catch (Exception e) {
Base.showError(null, "Could not read default settings.\n" +
"You'll need to reinstall Arduino.", e);
"You'll need to reinstall MPIDE.", e);
}

// check for platform-specific properties in the defaults
Expand Down Expand Up @@ -194,7 +194,7 @@ static protected void init(String commandLinePrefs) {
"Error reading the preferences file. " +
"Please delete (or move)\n" +
preferencesFile.getAbsolutePath() +
" and restart Arduino.", ex);
" and restart MPIDE.", ex);
}
}
}
Expand Down Expand Up @@ -269,7 +269,7 @@ public void actionPerformed(ActionEvent e) {
box.add(label);
fontSizeField = new JTextField(4);
box.add(fontSizeField);
label = new JLabel(" (requires restart of Arduino)");
label = new JLabel(" (requires restart of MPIDE)");
box.add(label);
pain.add(box);
d = box.getPreferredSize();
Expand Down Expand Up @@ -314,7 +314,7 @@ public void actionPerformed(ActionEvent e) {

if (Base.isWindows()) {
autoAssociateBox =
new JCheckBox("Automatically associate .pde files with Arduino");
new JCheckBox("Automatically associate .pde files with MPIDE");
pain.add(autoAssociateBox);
d = autoAssociateBox.getPreferredSize();
autoAssociateBox.setBounds(left, top, d.width + 10, d.height);
Expand Down Expand Up @@ -354,7 +354,7 @@ public void mouseExited(MouseEvent e) {
right = Math.max(right, left + d.width);
top += d.height;

label = new JLabel("(edit only when Arduino is not running)");
label = new JLabel("(edit only when MPIDE is not running)");
pain.add(label);
d = label.getPreferredSize();
label.setForeground(Color.gray);
Expand Down

0 comments on commit c0a5a99

Please sign in to comment.