Skip to content

Commit

Permalink
Tabs are "Categories"
Browse files Browse the repository at this point in the history
  • Loading branch information
paulvi committed Apr 28, 2014
1 parent d258c34 commit 2d71f7f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public void widgetSelected(SelectionEvent e) {
folder = new TabFolder(c, SWT.NONE);
folder.setLayoutData(new GridData(GridData.FILL_BOTH));
TabItem ti = new TabItem(folder, SWT.NONE);
ti.setText("Themes");
ti.setText("Categories");
ti.setControl(createCategoryControl(folder));
folder.pack();
return c;
Expand All @@ -81,7 +81,7 @@ protected Control createCategoryControl(Composite parent) {
c.setLayout(new GridLayout(2, true));

Label categoryLabel = new Label(c, SWT.NONE);
categoryLabel.setText("Themes");
categoryLabel.setText("Categories");

Label namesLabel = new Label(c, SWT.NONE);
namesLabel.setText("Associated file names");
Expand Down

0 comments on commit 2d71f7f

Please sign in to comment.