Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also .

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also .
base repository: HaikuArchives/Hare
base: fbcb38fced57
head repository: HaikuArchives/Hare
compare: a14b9e665ed6
  • 4 commits
  • 2 files changed
  • 0 commit comments
  • 2 contributors
Commits on Mar 07, 2018
CodeforEvolution
CodeforEvolution
Jacob S
Jacob S
Commits on Mar 08, 2018
Some Minor Fixes
Showing with 10 additions and 15 deletions.
  1. +1 −3 src/Hare/AppDefs.h
  2. +9 −12 src/Hare/AppWindow.cpp
@@ -2,10 +2,8 @@
#define __APP_DEFS_H__

#define COMPANY "Originally created by FlipSide Software"
#define COMPANY_WWW "https://github.com/HaikuArchives/Hare"
#define COMPANY_EMAIL "haiku@scottmc.com"
#define COMPANY_WWW "https://www.github.com/HaikuArchives/Hare"
#define APPLICATION "Hare"
#define VERSION "1.0.8"

#define WINDOW_FILE "Hare Window"
#define SETTINGS "Hare Settings"
@@ -10,6 +10,7 @@
#include <File.h>
#include <FindDirectory.h>
#include <fs_info.h>
#include <InterfaceDefs.h>
#include <image.h>
#include <LayoutBuilder.h>
#include <Message.h>
@@ -22,6 +23,8 @@
#include <Volume.h>
#include <VolumeRoster.h>

#include <AboutWindow.h>

#include "AEEncoder.h"

#include "AppDefs.h"
@@ -108,6 +111,8 @@ AppWindow::InitWindow()
viewShortcut = new BMessage(VIEW_SHORTCUT);
viewShortcut->AddInt32("view", 2);
AddShortcut('L', 0, viewShortcut, appView);

AddShortcut(B_DELETE, 0, new BMessage(REMOVE_MSG), appView);
}

BMenuBar*
@@ -398,18 +403,10 @@ AppWindow::AboutRequested()
{
PRINT(("AppWindow::AboutRequested()\n"));

BString msg;
msg = APPLICATION;
msg << " ";
msg << VERSION;
msg << "\n";
msg << COMPANY;
msg << "\n";
msg << COMPANY_WWW;
msg << "\n";
msg << COMPANY_EMAIL;
BAlert* alert = new BAlert("AboutBox", msg.String(), ABOUT_BTN);
alert->Go(NULL);
BAboutWindow* about = new BAboutWindow(APPLICATION, SIGNATURE);
about->AddExtraInfo(COMPANY_WWW);
about->AddExtraInfo(COMPANY);
about->Show();
}

void

No commit comments for this range

You can’t perform that action at this time.