Use absolute path rather than silly relative path

This commit is contained in:
Dolan Miu
2017-12-30 20:25:16 +00:00
parent ab348bd5f9
commit eb71fc20e6
63 changed files with 67 additions and 66 deletions

View File

@ -1,4 +1,4 @@
import { XmlComponent } from "../../../../xml-components";
import { XmlComponent } from "file/xml-components";
import { Pic } from "./pic";
export class GraphicData extends XmlComponent {

View File

@ -1,4 +1,4 @@
import { XmlComponent } from "../../../../../../xml-components";
import { XmlComponent } from "file/xml-components";
import { Blip } from "./blip";
import { SourceRectangle } from "./source-rectangle";
import { Stretch } from "./stretch";

View File

@ -1,4 +1,4 @@
import { XmlAttributeComponent, XmlComponent } from "../../../../../../xml-components";
import { XmlAttributeComponent, XmlComponent } from "file/xml-components";
interface IBlipProperties {
embed: string;

View File

@ -1,4 +1,4 @@
import { XmlComponent } from "../../../../../../xml-components";
import { XmlComponent } from "file/xml-components";
export class SourceRectangle extends XmlComponent {

View File

@ -1,4 +1,4 @@
import { XmlComponent } from "../../../../../../xml-components";
import { XmlComponent } from "file/xml-components";
class FillRectangle extends XmlComponent {

View File

@ -1,4 +1,4 @@
import { XmlComponent } from "../../../../../xml-components";
import { XmlComponent } from "file/xml-components";
import { BlipFill } from "./blip/blip-fill";
export class Pic extends XmlComponent {

View File

@ -1,4 +1,4 @@
import { XmlAttributeComponent, XmlComponent } from "../../../xml-components";
import { XmlAttributeComponent, XmlComponent } from "file/xml-components";
import { GraphicData } from "./graphic-data";
interface IGraphicProperties {

View File

@ -1,4 +1,4 @@
import { XmlComponent } from "../../xml-components";
import { XmlComponent } from "file/xml-components";
import { Graphic } from "./graphic";
export class Inline extends XmlComponent {