mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-22 13:18:28 +00:00
Rename Path.h to PathChanger.h (actual name of the class)
This commit is contained in:
parent
40b487c477
commit
14e01a92a4
@ -25,7 +25,7 @@
|
||||
#include "support/filetools.h"
|
||||
#include "support/Package.h"
|
||||
#include "support/FileName.h"
|
||||
#include "support/Path.h"
|
||||
#include "support/PathChanger.h"
|
||||
|
||||
#include <aspell.h>
|
||||
|
||||
|
@ -99,7 +99,7 @@
|
||||
#include "support/lyxalgo.h"
|
||||
#include "support/os.h"
|
||||
#include "support/Package.h"
|
||||
#include "support/Path.h"
|
||||
#include "support/PathChanger.h"
|
||||
#include "support/Systemcall.h"
|
||||
#include "support/textutils.h"
|
||||
#include "support/types.h"
|
||||
|
@ -32,7 +32,7 @@
|
||||
#include "support/lstrings.h"
|
||||
#include "support/os.h"
|
||||
#include "support/Package.h"
|
||||
#include "support/Path.h"
|
||||
#include "support/PathChanger.h"
|
||||
#include "support/Systemcall.h"
|
||||
|
||||
using namespace std;
|
||||
|
@ -23,7 +23,7 @@
|
||||
#include "support/gettext.h"
|
||||
#include "support/lstrings.h"
|
||||
#include "support/os.h"
|
||||
#include "support/Path.h"
|
||||
#include "support/PathChanger.h"
|
||||
#include "support/Systemcall.h"
|
||||
#include "support/textutils.h"
|
||||
#include "support/Translator.h"
|
||||
|
@ -60,7 +60,7 @@
|
||||
#include "support/Messages.h"
|
||||
#include "support/os.h"
|
||||
#include "support/Package.h"
|
||||
#include "support/Path.h"
|
||||
#include "support/PathChanger.h"
|
||||
#include "support/Systemcall.h"
|
||||
|
||||
#include "support/bind.h"
|
||||
|
@ -24,7 +24,7 @@
|
||||
#include "support/filetools.h"
|
||||
#include "support/gettext.h"
|
||||
#include "support/lstrings.h"
|
||||
#include "support/Path.h"
|
||||
#include "support/PathChanger.h"
|
||||
#include "support/Systemcall.h"
|
||||
#include "support/regex.h"
|
||||
|
||||
|
@ -68,7 +68,7 @@
|
||||
#include "support/Messages.h"
|
||||
#include "support/os.h"
|
||||
#include "support/Package.h"
|
||||
#include "support/Path.h"
|
||||
#include "support/PathChanger.h"
|
||||
#include "support/Systemcall.h"
|
||||
|
||||
#ifdef Q_WS_MACX
|
||||
|
@ -76,7 +76,7 @@
|
||||
#include "support/lstrings.h"
|
||||
#include "support/os.h"
|
||||
#include "support/Package.h"
|
||||
#include "support/Path.h"
|
||||
#include "support/PathChanger.h"
|
||||
#include "support/Systemcall.h"
|
||||
#include "support/Timeout.h"
|
||||
#include "support/ProgressInterface.h"
|
||||
|
@ -34,7 +34,7 @@
|
||||
#include "support/lyxalgo.h"
|
||||
#include "support/os.h"
|
||||
#include "support/Package.h"
|
||||
#include "support/Path.h"
|
||||
#include "support/PathChanger.h"
|
||||
#include "support/Systemcall.h"
|
||||
|
||||
#include <QCheckBox>
|
||||
|
@ -19,7 +19,7 @@
|
||||
#include "support/filetools.h"
|
||||
#include "support/lstrings.h"
|
||||
#include "support/Package.h"
|
||||
#include "support/Path.h"
|
||||
#include "support/PathChanger.h"
|
||||
#include "support/Translator.h"
|
||||
|
||||
#include <ostream>
|
||||
|
@ -40,7 +40,7 @@
|
||||
#include "support/gettext.h"
|
||||
#include "support/lstrings.h"
|
||||
#include "support/os.h"
|
||||
#include "support/Path.h"
|
||||
#include "support/PathChanger.h"
|
||||
#include "support/textutils.h"
|
||||
|
||||
#include <limits>
|
||||
|
@ -78,8 +78,8 @@ liblyxsupport_a_SOURCES = \
|
||||
numpunct_lyx_char_type.h \
|
||||
os.cpp \
|
||||
os.h \
|
||||
Path.cpp \
|
||||
Path.h \
|
||||
PathChanger.cpp \
|
||||
PathChanger.h \
|
||||
Package.cpp \
|
||||
Package.h \
|
||||
ProgressInterface.h \
|
||||
|
@ -10,7 +10,7 @@
|
||||
|
||||
#include <config.h>
|
||||
|
||||
#include "support/Path.h"
|
||||
#include "support/PathChanger.h"
|
||||
|
||||
// undef PathChanger macro when building PathChanger
|
||||
#undef PathChanger
|
@ -1,6 +1,6 @@
|
||||
// -*- C++ -*-
|
||||
/**
|
||||
* \file Path.h
|
||||
* \file PathChanger.h
|
||||
* This file is part of LyX, the document processor.
|
||||
* Licence details can be found in the file COPYING.
|
||||
*
|
||||
@ -9,8 +9,8 @@
|
||||
* Full author contact details are available in file CREDITS.
|
||||
*/
|
||||
|
||||
#ifndef PATH_H
|
||||
#define PATH_H
|
||||
#ifndef PATHCHANGER_H
|
||||
#define PATHCHANGER_H
|
||||
|
||||
#include "support/FileName.h"
|
||||
|
||||
@ -19,7 +19,7 @@ namespace lyx {
|
||||
namespace support {
|
||||
|
||||
/**
|
||||
* Path - utility closs for stackable working directories
|
||||
* Path - utility class for stackable working directories
|
||||
*
|
||||
* You can use a local variable of this type to temporarily
|
||||
* change to a directory as the cwd, for example :
|
||||
@ -77,4 +77,4 @@ int getPrivateFrameworkPathName(char * buf, unsigned len, char const * framework
|
||||
#endif
|
||||
|
||||
|
||||
#endif // PATH_H
|
||||
#endif // PATHCHANGER_H
|
@ -32,7 +32,7 @@
|
||||
#include "support/os.h"
|
||||
#include "support/Messages.h"
|
||||
#include "support/Package.h"
|
||||
#include "support/Path.h"
|
||||
#include "support/PathChanger.h"
|
||||
#include "support/Systemcall.h"
|
||||
#include "support/qstring_helpers.h"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user