Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

"Storage" directory is working. #5

Open
wants to merge 10 commits into
base: haiku
Choose a base branch
from

Conversation

ahitech
Copy link
Contributor

@ahitech ahitech commented Oct 4, 2023

Compiled "storage", "portability", "intro" and "modules".

@@ -0,0 +1,476 @@
// -*- C++ -*-

// Copyright (C) 2007-2023 Free Software Foundation, Inc.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We should not need to import this file. If it's included directly, try including <algorithm> instead.

@@ -6,7 +6,7 @@
#ifndef _FSPROTO_H
#define _FSPROTO_H

#include <sys/dirent.h>
#include <posix/dirent.h>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
#include <posix/dirent.h>
#include <dirent.h>

@@ -9,6 +9,7 @@

#include <Window.h>
#include <Messenger.h>
#include <TextControl.h>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
#include <TextControl.h>
class BTextControl;

@@ -13,6 +13,8 @@
#ifndef PEOPLEVIEW_H
#define PEOPLEVIEW_H

#include <PopUpMenu.h>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
#include <PopUpMenu.h>
class BPopUpMenu;

Comment on lines +12 to +13
#include <StringItem.h>
#include <TextView.h>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
#include <StringItem.h>
#include <TextView.h>
class BTextView;

Comment on lines +21 to +22
#include <Menu.h>
#include <FilePanel.h>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
#include <Menu.h>
#include <FilePanel.h>
class BMenu;
class BFilePanel;

@@ -15,6 +15,7 @@
// frame window would in MFC, i.e. cascade/tiled window arrangement.

#include <Application.h>
#include <FilePanel.h>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
#include <FilePanel.h>
class BFilePanel;

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

Successfully merging this pull request may close these issues.

3 participants